diff options
author | Michael Manfre | 2022-11-08 23:05:51 -0500 |
---|---|---|
committer | GitHub | 2022-11-08 21:05:51 -0700 |
commit | 8a0a7558894afce8d25b7f0dc16775e899b72a94 (patch) | |
tree | 205c01cefcca52ded01e054810932e1ac39375a1 /scripts | |
parent | 54e1b1f93a81b93e24ee8dc70d41bd95ff782ba2 (diff) | |
download | takahe-8a0a7558894afce8d25b7f0dc16775e899b72a94.tar.gz takahe-8a0a7558894afce8d25b7f0dc16775e899b72a94.tar.bz2 takahe-8a0a7558894afce8d25b7f0dc16775e899b72a94.zip |
Add basic docker support
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/start.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/start.sh b/scripts/start.sh new file mode 100644 index 0000000..99f1ed0 --- /dev/null +++ b/scripts/start.sh @@ -0,0 +1,7 @@ +#!/bin/sh + +. /takahe/.venv/bin/activate + +python manage.py migrate + +exec gunicorn takahe.asgi:application -k uvicorn.workers.UvicornWorker -b 0.0.0.0:8000 |