Go to file
Nyo e7b7dc932a .BANCHO. Add max packets buffer size 2016-10-08 22:37:10 +02:00
common@a899c0be89 .BANCHO. .HIDE. Update submodules 2016-10-08 22:25:27 +02:00
constants .BANCHO. .FIX. Return bytes rather than None in match packets if match doesn't exist 2016-10-08 20:34:17 +02:00
events .BANCHO. Add max packets buffer size 2016-10-08 22:37:10 +02:00
handlers .BANCHO. Add support for tournament client 2016-10-05 23:28:26 +02:00
helpers .BANCHO. .FIX. Fix spectator chat 2016-10-07 14:13:42 +02:00
irc .BANCHO. .FIX. Fixed some missing references, code cleaning 2016-10-02 23:11:18 +02:00
objects .BANCHO. Add max packets buffer size 2016-10-08 22:37:10 +02:00
.gitignore Add submodules 2016-10-02 22:48:14 +02:00
.gitmodules Add submodules 2016-10-02 22:48:14 +02:00
LICENSE Edit LICENSE and README 2016-08-01 10:40:21 +02:00
README.md .BANCHO. .HIDE. Removed dill from requirements list 2016-10-08 20:49:04 +02:00
filters.txt .BANCHO. .FIX. Fix chat filters 2016-08-10 12:00:33 +02:00
pep.py .BANCHO. .FIX. Fix startup schiavo messages 2016-10-06 23:13:37 +02:00
requirements.txt .BANCHO. .HIDE. Removed dill from requirements list 2016-10-08 20:49:04 +02:00
version .BANCHO. .HIDE. Update version 2016-10-07 11:06:28 +02:00

README.md

pep.py

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
  • 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, 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.