mirror of
https://github.com/meeb/tubesync.git
synced 2025-06-21 04:26:36 +00:00
18 lines
274 B
Bash
Executable File
18 lines
274 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -x
|
|
|
|
# Compile SCSS files
|
|
/usr/bin/python3 /app/manage.py compilescss
|
|
|
|
# Collect the static files
|
|
/usr/bin/python3 /app/manage.py collectstatic --no-input --link
|
|
|
|
# Run migrations
|
|
/usr/bin/python3 /app/manage.py migrate
|
|
|
|
# Run what's in CMD
|
|
exec "$@"
|
|
|
|
# eof
|