Initial commit

This commit is contained in:
2026-06-22 17:40:08 +05:30
commit c742ef0e53
308 changed files with 68519 additions and 0 deletions

11
docker-entrypoint.sh Normal file
View File

@@ -0,0 +1,11 @@
#!/bin/sh
set -e
# Get number of workers from environment or default to 1
WORKERS=${UVICORN_WORKERS:-1}
echo "Starting Route Optimization API with ${WORKERS} worker(s)..."
# Start uvicorn
exec uvicorn app.main:app --host 0.0.0.0 --port 8002 --workers ${WORKERS}