13 lines
461 B
Bash
Executable File
13 lines
461 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
|
||
#
|
||
# 保留测量输出目录以复用点云(配合 .env 中 MEASURE_REUSE_EXISTING_CLOUDS=true):
|
||
# KEEP_MEASURE_OUTPUT=1 bash scripts/start_fresh.sh
|
||
#
|
||
set -euo pipefail
|
||
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
||
exec bash "$ROOT/fish_api/start_fresh.sh"
|