forked from kartoza/ingc_geonode_theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
entrypoint.sh
60 lines (42 loc) · 1.16 KB
/
entrypoint.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
#!/bin/bash
set -e
/usr/local/bin/invoke update
source $HOME/.override_env
echo DATABASE_URL=$DATABASE_URL
echo GEODATABASE_URL=$GEODATABASE_URL
echo SITEURL=$SITEURL
echo ALLOWED_HOSTS=$ALLOWED_HOSTS
echo GEOSERVER_PUBLIC_LOCATION=$GEOSERVER_PUBLIC_LOCATION
/usr/local/bin/invoke waitfordbs
echo "waitfordbs task done"
echo "running migrations"
/usr/local/bin/invoke migrations
echo "migrations task done"
if [ ! -e "/mnt/volumes/statics/geonode_init.lock" ]; then
/usr/local/bin/invoke prepare
echo "prepare task done"
/usr/local/bin/invoke fixtures
echo "fixture task done"
fi
/usr/local/bin/invoke initialized
echo "initialized"
echo "refresh static data"
/usr/local/bin/invoke statics
echo "static data refreshed"
cmd="$@"
echo DOCKER_ENV=$DOCKER_ENV
if [ -z ${DOCKER_ENV} ] || [ ${DOCKER_ENV} = "development" ]
then
echo "Executing standard Django server $cmd for Development"
else
if [ ${IS_CELERY} = "True" ]
then
cmd=$CELERY_CMD
echo "Executing Celery server $cmd for Production"
else
cmd=$UWSGI_CMD
echo "Executing UWSGI server $cmd for Production"
fi
fi
echo 'got command ${cmd}'
exec $cmd