Go to file
2023-10-31 21:38:34 +01:00
accounts register: use ModelForm, and print all errors 2023-10-31 21:14:24 +01:00
profiles profiles: init 2023-10-29 21:09:38 +01:00
trancendence profiles: init 2023-10-29 21:09:38 +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 doc: switch to django branch 2023-10-31 21:38:34 +01:00
requirements.txt core: reformat file tree 2023-10-25 16:50:05 +02:00

BACKEND

Installation

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