Go to file
2023-11-27 19:15:15 +01:00
accounts clean 2023-11-13 13:31:56 +01:00
frontend add: home 2023-11-27 19:15:15 +01:00
profiles profile: rename multiple var and change to use 2023-11-12 00:03:08 +01:00
trancendence urls use /api/ and / to frontend 2023-11-21 19:20:59 +01:00
.gitignore core: reformat file tree 2023-10-25 16:50:05 +02:00
manage.py core: reformat file tree 2023-10-25 16:50:05 +02:00
README.md add: db instruction readme 2023-11-27 14:09:18 +01:00
requirements.txt Alors ce commit sert à CRAMPTÉ 2023-11-27 13:23:54 +01:00

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
python manage.py migrate profiles
  • Start the developpement server
python manage.py runserver 0.0.0.0:8000