ft_transcendence/README.md
2023-12-12 12:06:13 +01:00

572 B

BACKEND

Installation

  • Clone the project:
git clone https://git.chauvet.pro/michel/ft_transcendence
cd ft_transcendence
git switch server
  • Create python virtual environnement.
python3 -m venv .env
  • Source the environnement.
source .env/bin/activate
  • Install the requirements
pip install -r requirements.txt
  • Setup database
python manage.py runserver makemigrations profiles games
python manage.py migrate profiles games
  • Start the developpement server
python manage.py runserver 0.0.0.0:8000