Clarify Django commands
This commit is contained in:
parent
4d8d54e7de
commit
8a13f87a9e
|
@ -23,8 +23,9 @@ Dans le cas du VirtualEnv,
|
||||||
python3 -m venv venv
|
python3 -m venv venv
|
||||||
. venv/bin/activate
|
. venv/bin/activate
|
||||||
pip install -r requirements.txt
|
pip install -r requirements.txt
|
||||||
|
./manage.py compilemessages
|
||||||
|
./manage.py makemigrations
|
||||||
./manage.py migrate
|
./manage.py migrate
|
||||||
./manage.py collectstatic
|
|
||||||
./manage.py runserver
|
./manage.py runserver
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -9,6 +9,7 @@ python manage.py makemigrations
|
||||||
sleep 2
|
sleep 2
|
||||||
|
|
||||||
python manage.py migrate
|
python manage.py migrate
|
||||||
|
python manage.py collectstatic
|
||||||
|
|
||||||
uwsgi --chdir="$(pwd)" \
|
uwsgi --chdir="$(pwd)" \
|
||||||
--module=med.wsgi:application \
|
--module=med.wsgi:application \
|
||||||
|
|
|
@ -1,19 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
# This will launch the Django project as a UWSGI socket
|
|
||||||
# then Apache or NGINX will be able to use that socket
|
|
||||||
|
|
||||||
PROJECT_PATH="$(pwd)"
|
|
||||||
|
|
||||||
# Official Django configuration
|
|
||||||
uwsgi_python3 --chdir=$PROJECT_PATH \
|
|
||||||
--module=med.wsgi:application \
|
|
||||||
--env DJANGO_SETTINGS_MODULE=med.settings \
|
|
||||||
--master --pidfile=$PROJECT_PATH/uwsgi.pid \
|
|
||||||
--socket=$PROJECT_PATH/uwsgi.sock \
|
|
||||||
--processes=5 \
|
|
||||||
--chmod-socket=600 \
|
|
||||||
--harakiri=20 \
|
|
||||||
--max-requests=5000 \
|
|
||||||
--vacuum \
|
|
||||||
--daemonize=$PROJECT_PATH/uwsgi.log \
|
|
||||||
--protocol=fastcgi
|
|
Loading…
Reference in New Issue