Go to file
Giuseppe Guerra at an airport 0329847477 Don't start spectating unexisting users if user id is negative 2017-08-12 08:56:39 +02:00
common@32a02e4d56 Update submodules 2017-04-13 17:22:35 +02:00
constants Fix various bugs with multiplayer teams and mp commands 2017-08-11 22:04:25 +02:00
events Don't start spectating unexisting users if user id is negative 2017-08-12 08:56:39 +02:00
handlers Add various locks in osuToken object 2017-08-11 00:45:44 +02:00
helpers Allow tourney clients to send messages in chat, send match info to lobby after creating it with !mp make 2017-08-07 23:35:33 +02:00
irc I should get a proper development environment 2017-07-23 12:21:38 +02:00
objects Remove _streamLock 2017-08-12 08:49:55 +02:00
pubSubHandlers .BANCHO. Removed dashes in when tracking notes for CM 2017-01-06 12:55:50 +01:00
.gitignore .HIDE. Update .gitignore 2016-12-08 11:44:12 +01:00
.gitmodules .HIDE. Change submodule url to new git server and use HTTPS instead of SSH 2017-01-16 19:39:54 +01:00
.landscape.yaml .HIDE. Update landscape config file 2016-12-28 16:12:39 +01:00
LICENSE Edit LICENSE and README 2016-08-01 10:40:21 +02:00
README.md Add code health badge in README 2016-12-17 15:33:12 +01:00
filters.txt Update 'filters.txt' 2017-04-10 19:21:41 +02:00
full_build.sh Add full build script 2016-12-08 15:46:21 +01:00
pep.py .BANCHO. Remove double prefix on bancho start schiavo message 2017-01-06 12:23:45 +01:00
requirements.txt .HIDE. General refactoring 2016-12-26 10:33:05 +01:00
setup.py .BANCHO. Dynamic setup.py file 2016-12-08 11:43:23 +01:00
version Bump version to 1.13.0 2017-08-07 23:53:21 +02:00

README.md

pep.py Code Health

This is Ripple's bancho server. It handles:

  • Client login
  • Online users listing and statuses
  • Public and private chat
  • Spectator
  • Multiplayer
  • Fokabot

Requirements

  • Python 3.5
  • Cython
  • C compiler
  • MySQLdb (mysqlclient)
  • Tornado
  • Bcrypt
  • Raven

How to set up pep.py

First of all, initialize and update the submodules

$ git submodule init && git submodule update

afterwards, install the required dependencies with pip

$ pip install -r requirements.txt

then, compile all *.pyx files to *.so or *.dll files using setup.py (distutils file)

$ python3 setup.py build_ext --inplace

finally, run pep.py once to create the default config file and edit it

$ python3 pep.py
...
$ nano config.ini

you can run pep.py by typing

$ python3 pep.py

License

All code in this repository is licensed under the GNU AGPL 3 License.
See the "LICENSE" file for more information
This project contains code taken by reference from miniircd by Joel Rosdahl.