summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xstart.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/start.sh b/start.sh
deleted file mode 100755
index 2b0047c..0000000
--- a/start.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-
-
-case "$*" in
- dev)
- export SECRET_KEY="+qYGOYFD(Pc;--S]X%Xnu&j4c+~5As6)yRTY;CHl4bRW;"
- export DEBUG_MODE=True
- yes no | python manage.py migrate
- python manage.py runserver 0.0.0.0:8000
- ;;
- server)
- # uwsgi start!
- uwsgi --ini /app/uwsgi.conf
- ;;
- shell)
- /bin/bash
- ;;
- *)
- python manage.py "$@"
-esac