mirror of
https://github.com/wizarrrr/wizarr.git
synced 2026-06-11 23:34:47 -04:00
8 lines
164 B
Bash
8 lines
164 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
# The migrations folder is already inside the image.
|
|
# Just apply whatever's new:
|
|
uv run flask db upgrade
|
|
|
|
exec "$@" # hand off to gunicorn |