42_ft_transcendence/run.sh
AdrienLSH b4f1636323 Ta mere val
This reverts commit bf14f5ff4a.
2024-01-23 09:57:00 +01:00

12 lines
315 B
Bash
Executable File

#!/bin/bash
python3 -m venv .env
source .env/bin/activate
pip install -r requirements.txt
python manage.py makemigrations games
python manage.py makemigrations profiles
python manage.py makemigrations chat
python manage.py makemigrations tournament
python manage.py migrate
python manage.py runserver 0.0.0.0:8000