Go to file
Nyo 7910291b77 .BANCHO. Switched from tornado to bottle + gevent, code cleaning 2016-08-17 16:41:05 +02:00
constants .BANCHO. .FIX. Fix special channels shown in channels list after system reload 2016-08-12 14:27:29 +02:00
events .BANCHO. Switched from tornado to bottle + gevent, code cleaning 2016-08-17 16:41:05 +02:00
handlers .BANCHO. Switched from tornado to bottle + gevent, code cleaning 2016-08-17 16:41:05 +02:00
helpers .BANCHO. Switched from tornado to bottle + gevent, code cleaning 2016-08-17 16:41:05 +02:00
irc Update README and add ircserver.py 2016-08-01 11:06:09 +02:00
objects .BANCHO. Switched from tornado to bottle + gevent, code cleaning 2016-08-17 16:41:05 +02:00
.gitignore .BANCHO. .FIX. Fix chat filters 2016-08-10 12:00:33 +02:00
LICENSE Edit LICENSE and README 2016-08-01 10:40:21 +02:00
README.md Update README and add ircserver.py 2016-08-01 11:06:09 +02:00
filters.txt .BANCHO. .FIX. Fix chat filters 2016-08-10 12:00:33 +02:00
pep.py .BANCHO. Switched from tornado to bottle + gevent, code cleaning 2016-08-17 16:41:05 +02:00
runserver.bat Fix untracked files 2016-04-24 10:49:58 +02:00
version .BANCHO. Switched from tornado to bottle + gevent, code cleaning 2016-08-17 16:41:05 +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 or mysql-python)
  • Tornado (tornado)
  • Bcrypt (bcrypt)

How to set up pep.py

First of all, install all the dependencies

$ pip install mysqlclient tornado bcrypt

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.