mirror of
https://github.com/Eugeny/tabby-web.git
synced 2025-06-07 21:19:53 +00:00
8 lines
152 B
Bash
Executable File
8 lines
152 B
Bash
Executable File
#!/bin/sh
|
|
if [[ -n "$DOCKERIZE_ARGS" ]]; then
|
|
dockerize $DOCKERIZE_ARGS
|
|
fi
|
|
cd /app
|
|
/venv/*/bin/python ./manage.py migrate
|
|
exec /venv/*/bin/gunicorn
|