2025-01-20 22:51:05 +01:00
|
|
|
# GibCasa GameServerSupervisor
|
|
|
|
|
|
|
|
# Setup
|
|
|
|
|
|
|
|
|
|
|
|
* clone the repo
|
|
|
|
* create venv `python3 -m venv venv`
|
|
|
|
* activate `source venv/bin/activate`
|
|
|
|
* `pip install -r requirements.txt`
|
|
|
|
* will need docker running
|
|
|
|
* `python manage.py migrate`
|
2025-01-24 21:27:07 +01:00
|
|
|
* Create admin user: `python manage.py createsuperuser`
|
2025-01-20 22:51:05 +01:00
|
|
|
* `python manage.py runserver`
|
|
|
|
* visit http://localhost:8000 for /public and
|
2025-01-24 21:27:07 +01:00
|
|
|
http://localhost:8000/admin/ to login via the superuser credentials
|