diff --git a/dev/start-api-without-debug b/dev/start-api-without-debug new file mode 100755 index 0000000000..c6136ed5e1 --- /dev/null +++ b/dev/start-api-without-debug @@ -0,0 +1,11 @@ +#!/bin/bash + +set -x + +SCRIPT_DIR="$(dirname "$(realpath "$0")")" +cd "$SCRIPT_DIR/../api" + +uv run flask db upgrade + +uv run \ + flask run --host 0.0.0.0 --port=5001