start project

This commit is contained in:
behruz-dev
2025-07-14 13:30:19 +05:00
commit d14c198ac6
22 changed files with 625 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
python3 manage.py collectstatic --noinput
python3 manage.py makemigrations --noinput
python3 manage.py migrate --noinput
gunicorn config.wsgi:application -b 0.0.0.0:8000 --workers $(($(nproc) * 2 + 1))
exit $?