mirror of
https://github.com/langgenius/dify.git
synced 2026-07-21 12:05:30 -04:00
12 lines
175 B
Bash
Executable File
12 lines
175 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -x
|
|
|
|
SCRIPT_DIR="$(dirname "$(realpath "$0")")"
|
|
cd "$SCRIPT_DIR/../api"
|
|
|
|
uv run flask db upgrade
|
|
|
|
uv run \
|
|
dotenv -f .env run --no-override -- python -m app
|