mirror of https://github.com/interlegis/sapl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
447 B
10 lines
447 B
DJANGODIR=/home/sapl31/sapl # Django project directory (*)
|
|
DJANGO_SETTINGS_MODULE=sapl.settings # which settings file should Django use (*)
|
|
DJANGO_WSGI_MODULE=sapl.wsgi # WSGI module name (*)
|
|
|
|
cd $DJANGODIR
|
|
source ~/.virtualenvs/sapl/bin/activate
|
|
export DJANGO_SETTINGS_MODULE=$DJANGO_SETTINGS_MODULE
|
|
export PYTHONPATH=$DJANGODIR:$PYTHONPATH
|
|
|
|
gunicorn --bind 10.1.2.119:8000 sapl.wsgi:application
|
|
|