10 lines
304 B
Bash
Executable File
10 lines
304 B
Bash
Executable File
#!/usr/bin/env bash
|
||
# 仓库根入口:等价于 fish_api/start_fresh.sh(先 prestart_fresh 再 uvicorn)
|
||
#
|
||
# bash scripts/start_fresh.sh
|
||
# PORT=8001 bash scripts/start_fresh.sh
|
||
#
|
||
set -euo pipefail
|
||
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
||
exec bash "$ROOT/fish_api/start_fresh.sh"
|