move production to port 8453 and dev to port 8080

This commit is contained in:
2026-08-03 14:20:00 -04:00
parent 54f0de305f
commit 424dea6e10
4 changed files with 51 additions and 5 deletions
+1
View File
@@ -28,6 +28,7 @@ from scanner import process_targets, scan_results
APP_ROOT = Path(__file__).resolve().parent
DB_PATH = Path(os.getenv("DB_PATH", str(APP_ROOT.parent / "data" / "scheduler.db")))
print(f"[app] Using DB_PATH: {DB_PATH}")
DUT = os.getenv("DUT", "CGW453").strip()
REF = os.getenv("REF", "CGW452").strip()
+1
View File
@@ -14,6 +14,7 @@ from test_config import serialize_station_testpoint_map, resolve_test_config_key
APP_ROOT = Path(__file__).resolve().parent
DB_PATH = Path(os.getenv("DB_PATH", str(APP_ROOT.parent / "data" / "scheduler.db")))
print(f"[db] Using DB_PATH: {DB_PATH}")
# Hardware device names (from environment or defaults)
DUT = os.getenv("DUT", "CGW453").strip()