Initial travel knowledge graph release

This commit is contained in:
2026-06-09 09:56:26 +08:00
commit 5f061295d8
402 changed files with 103877 additions and 0 deletions

19
scripts/start.sh Executable file
View File

@@ -0,0 +1,19 @@
#!/usr/bin/env bash
set -euo pipefail
cd "$(dirname "$0")/.."
if ! docker info >/dev/null 2>&1; then
echo "Docker daemon is not running. Start Docker Desktop and rerun this script."
exit 1
fi
docker compose up -d --build
API_PORT="${API_PORT:-8102}"
echo ""
echo "Ready:"
echo " http://localhost:${API_PORT}/admin"
echo ""
echo "Demo login:"
echo " admin@example.com / change-me"