-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathrun-django.sh
executable file
·94 lines (79 loc) · 1.94 KB
/
run-django.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#!/bin/bash
venv=~/.venvs/venvdrfpipeline
env_name=drf-dev
webapp_host="localhost"
webapp_port="8010"
# support for using venv in other locations
if [[ "${USE_VENV}" != "" ]]; then
if [[ -e ${USE_VENV}/bin/activate ]]; then
echo "Using custom virtualenv: ${USE_VENV}"
venv=${USE_VENV}
else
echo "Did not find custom virtualenv: ${USE_VENV}"
exit 1
fi
fi
if [[ "${USE_ENV}" != "" ]]; then
env_name="${USE_ENV}"
fi
if [[ ! -e ./envs/${env_name}.env ]]; then
echo ""
echo "Failed to find env file: envs/${env_name}.env"
echo ""
exit 1
fi
if [[ "${WEBAPP_HOST}" != "" ]]; then
webapp_host="${WEBAPP_HOST}"
fi
if [[ "${WEBAPP_PORT}" != "" ]]; then
webapp_port="${WEBAPP_PORT}"
fi
echo "Activating pips: ${venv}/bin/activate"
. ${venv}/bin/activate
echo ""
echo "Sourcing: ./envs/${env_name}.env"
source ./envs/${env_name}.env
echo ""
cd webapp
echo ""
which python
pip list
echo ""
echo ""
env | grep DJANGO | sort
echo ""
# do not run these in the container in openshift
if [[ "${SKIP_BUILD_DOCS}" != "1" ]]; then
echo ""
echo "Deploying Sphinx docs"
./build-docs.sh
echo ""
fi
# do not run these in the container in openshift
if [[ "${SKIP_COLLECT_STATICS}" != "1" ]]; then
echo ""
echo "Deploying Statics"
./collect-statics.sh
echo ""
fi
if [[ "${SHARED_LOG_CFG}" != "" ]]; then
echo ""
echo "Logging config: ${SHARED_LOG_CFG}"
echo ""
fi
echo ""
echo "Starting Django listening on TCP port ${webapp_port}"
echo "http://${webapp_host}:${webapp_port}/swagger"
echo ""
# runserver has issues with
# threads which break keras
# python ./manage.py runserver 0.0.0.0:8010
if [[ "${APP_SERVER}" == "uwsgi" ]]; then
uwsgi ./django-uwsgi.ini --thunder-lock
else
if [[ "${DJANGO_DEBUG}" == "yes" ]]; then
gunicorn -c ./django-gunicorn.py drf_network_pipeline.wsgi
else
gunicorn -c ./django-gunicorn.py drf_network_pipeline.wsgi
fi
fi