6de2455917
- Added GLOBAL_MARKETS_TITLE to all translation files - Updated footer with 12 markets (4 active + 8 upcoming) - Translated market section to: zh-cn, zh-tw, ja, ko, th, vi, id, ms, hi - Built and deployed to production - CloudFront invalidation: I3RTMXVFDJXWLG3SYX208OP1CC
15 lines
523 B
Bash
Executable File
15 lines
523 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Starta LandveX Fas 1 API på port 8083
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
export LANDVEX_DB="/home/bernt/.openclaw/workspace/landvex-paket/landvex-produktionspaket-v1/landvex.db"
|
|
export LANDVEX_FEEDBACK_DIR="/home/bernt/.openclaw/workspace/landvex-paket/api/feedback"
|
|
|
|
# Använd uvicorn direkt om tillgängligt, annars python -m uvicorn
|
|
if command -v uvicorn &> /dev/null; then
|
|
exec uvicorn main:app --host 0.0.0.0 --port 8083 "$@"
|
|
else
|
|
exec python3 -m uvicorn main:app --host 0.0.0.0 --port 8083 "$@"
|
|
fi
|