Go to file
Nyo fb00063e0f ⬆️ v1.10.0 ⬆️ 2016-11-17 20:13:36 +01:00
common@db36e8d589 .HIDE. Update submodules 2016-11-17 19:39:50 +01:00
constants .BANCHO. Add lets version in !system status 2016-11-17 20:11:11 +01:00
events .HIDE. Remove random prints, fix #9 2016-11-17 19:15:14 +01:00
handlers .HIDE. General refactoring and documentation 2016-11-17 19:13:06 +01:00
helpers .HIDE. General refactoring and documentation 2016-11-17 19:13:06 +01:00
irc .HIDE. General refactoring and documentation 2016-11-17 19:13:06 +01:00
objects .HIDE. Removed shrug version 2016-11-17 20:10:32 +01:00
.gitignore .BANCHO. Add redis support, remove userID cache 2016-11-15 20:38:15 +01: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. Save pep.py version in redis 2016-11-17 20:07:06 +01:00
requirements.txt .BANCHO. Add redis support, remove userID cache 2016-11-15 20:38:15 +01:00
version ⬆️ v1.10.0 ⬆️ 2016-11-17 20:13:36 +01: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.