-
Notifications
You must be signed in to change notification settings - Fork 131
Setting up
github-actions[bot] edited this page Jun 27, 2024
·
4 revisions
# clone bancho.py's repository onto your machine
git clone https://github.com/osuAkatsuki/bancho.py
# enter bancho.py's new directory
cd bancho.py
# install docker for building the application image
sudo apt install -y docker
all configuration for the osu! server (bancho.py) itself can be done from the
.env
and logging.yaml
files. we will provide example files for each, which
you can use as a base and modify as you'd like.
# create a configuration file from the sample provided
cp .env.example .env
# create a logging configuration file from the sample provided
cp logging.yaml.example logging.yaml
# configure the application to your needs
# this is required to move onto the next steps
nano .env
# you can additionally configure the logging if you'd like,
# but the default should work fine for most users.
nano logging.yaml
bancho.py relies on a reverse proxy for tls (https) support, and for ease-of-use in terms of configuration. nginx is an open-source and efficient web server we'll be using for this guide, but feel free to check out others, like caddy and h2o.
# install nginx
sudo apt install nginx
# install nginx configuration using values from your .env
./scripts/install-nginx-config.sh
if everything went well, you should be able to start your server up:
# build the application
make build
# run the application
make run
additionally, the following commands are available for your introspection:
# run the application in the background
make run-bg
# view logs of all running containers
make logs
# run all automated tests
make test
# run formatters and linters
make lint
# run static type checking
make type-check
# remove all unused dependencies
make clean