admin / Bid-Sentinel
publicBid Scrape and Tracking Application with AI Capability
Bid-Sentinel / bid-sentinel-v2 / backend / entrypoint.sh
308 B · main
1 2 3 4 5 6 7 8 | #!/usr/bin/env bash set -euo pipefail echo "[entrypoint] Starting Cyber Tender Tracker backend..." # Tables are created and the admin user is seeded inside the FastAPI lifespan # handler (see app/main.py), so we just launch the server here. exec uvicorn app.main:app --host 0.0.0.0 --port 8000 --workers 1 |