Merge coffee-category: Markets replaces Kiosk
This commit is contained in:
Executable
+15
@@ -0,0 +1,15 @@
|
||||
#!/usr/bin/env bash
|
||||
# 🚀 Dev instance — admin server on port 8092, points to dev DB
|
||||
set -euo pipefail
|
||||
|
||||
cd "$(dirname "$0")"
|
||||
PORT=8092
|
||||
MAIN_DEV_DIR="$HOME/projects/canteen-asset-tracker-dev"
|
||||
CANTEEN_DB_PATH="${MAIN_DEV_DIR}/assets.dev.db"
|
||||
|
||||
echo "🚀 Starting DEV admin server on http://0.0.0.0:${PORT}"
|
||||
echo " DB: ${CANTEEN_DB_PATH}"
|
||||
exec python -m uvicorn admin_server:app \
|
||||
--host 0.0.0.0 \
|
||||
--port "$PORT" \
|
||||
--log-level info
|
||||
Reference in New Issue
Block a user