mirror of
https://github.com/rr-/szurubooru.git
synced 2025-07-17 08:26:24 +00:00
9 lines
179 B
Bash
9 lines
179 B
Bash
#!/usr/bin/dumb-init /bin/sh
|
|
set -e
|
|
cd /opt/app
|
|
|
|
alembic upgrade head
|
|
|
|
echo "Starting szurubooru API on port ${PORT}"
|
|
exec hupper -m waitress --port ${PORT} szurubooru.facade:app
|