blob: 30d4b6402c99aa3dda94fd5ef9964de64add9029 (
plain)
1
2
3
4
5
|
#!//bin/sh
set -e
alembic upgrade head
echo "Starting szurubooru API on port ${PORT} - Running on ${THREADS} threads"
exec waitress-serve --port ${PORT} --threads ${THREADS} szurubooru.facade:app
|