Go to file
2023-12-12 10:01:12 +01:00
accounts delete accounts auto logout 2023-12-11 12:43:49 +01:00
chat Chat advance 2023-11-27 23:31:31 +01:00
frontend Merge branch 'server' into feat/matchmaking 2023-12-12 10:01:12 +01:00
matchmaking init app 2023-12-11 13:39:53 +01:00
profiles fix: fix: + ratio 2023-12-11 15:23:42 +01:00
trancendence add: profile avatar 2023-12-06 15:19:41 +01:00
.gitignore ignore avatars 2023-12-06 15:33:04 +01: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 The project advance 2023-11-27 21:59:41 +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