add prerequisites
This commit is contained in:
parent
0f042f78ea
commit
8b44b8a952
45
README.md
45
README.md
@ -1,15 +1,40 @@
|
|||||||
# GibCasa GameServerSupervisor
|
# GibCasa GameServerSupervisor
|
||||||
|
|
||||||
# Setup
|
## Prerequisites
|
||||||
|
|
||||||
|
Python 3.10 or above
|
||||||
|
|
||||||
* clone the repo
|
## Installation
|
||||||
* create venv `python3 -m venv venv`
|
|
||||||
* activate `source venv/bin/activate`
|
1. Clone the repository:
|
||||||
* `pip install -r requirements.txt`
|
```bash
|
||||||
* will need docker running
|
git clone https://git.com.de/GibCasa/GameServerSupervisor
|
||||||
* `python manage.py migrate`
|
```
|
||||||
* Create admin user: `python manage.py createsuperuser`
|
2. Create a virtual environment in Python:
|
||||||
* `python manage.py runserver`
|
```bash
|
||||||
|
python3 -m venv venv
|
||||||
|
```
|
||||||
|
3. Activate the virtual environment:
|
||||||
|
```bash
|
||||||
|
source venv/bin/activate
|
||||||
|
```
|
||||||
|
4. Install dependencies:
|
||||||
|
```bash
|
||||||
|
pip install -r requirements.txt
|
||||||
|
```
|
||||||
|
5. Run migrations:
|
||||||
|
```bash
|
||||||
|
python manage.py migrate
|
||||||
|
```
|
||||||
|
6. Create admin user:
|
||||||
|
```bash
|
||||||
|
python manage.py createsuperuser
|
||||||
|
```
|
||||||
|
7. Run server:
|
||||||
|
```bash
|
||||||
|
python manage.py runserver
|
||||||
|
```
|
||||||
* visit http://localhost:8000 for /public and
|
* visit http://localhost:8000 for /public and
|
||||||
http://localhost:8000/admin/ to login via the superuser credentials
|
http://localhost:8000/admin/ to login via the superuser credentials
|
||||||
|
* will need docker running
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user