39 lines
781 B
Markdown
39 lines
781 B
Markdown
# BACKEND
|
|
|
|
## Installation
|
|
|
|
- Clone the project:
|
|
``` bash
|
|
git clone https://git.chauvet.pro/michel/ft_transcendence
|
|
cd ft_transcendence
|
|
git switch server
|
|
```
|
|
- Create python virtual environnement.
|
|
``` bash
|
|
python3 -m venv .env
|
|
```
|
|
- Source the environnement.
|
|
``` bash
|
|
source .env/bin/activate
|
|
```
|
|
- Install the requirements
|
|
``` bash
|
|
pip install -r requirements.txt
|
|
```
|
|
- Setup database
|
|
```
|
|
<<<<<<< HEAD
|
|
python manage.py runserver makemigrations profiles
|
|
python manage.py migrate profiles
|
|
=======
|
|
python manage.py makemigrations games
|
|
python manage.py makemigrations profiles
|
|
python manage.py runserver makemigrations chat
|
|
python manage.py migrate
|
|
>>>>>>> d03f90367f1fd075e79f4a69d31c5a49b9e53d01
|
|
```
|
|
- Start the developpement server
|
|
```
|
|
python manage.py runserver 0.0.0.0:8000
|
|
```
|