refactor: move app.py and excluded_containers.json to app/ directory

This commit is contained in:
Сергей Антропов
2025-08-20 15:49:17 +03:00
parent c925e4920a
commit 1e6149107d
4 changed files with 10 additions and 9 deletions

View File

@@ -20,7 +20,7 @@ if [ "$DEBUG_MODE" = "true" ]; then
echo "Swagger UI: http://0.0.0.0:$LOGBOARD_PORT/docs"
echo "ReDoc: http://0.0.0.0:$LOGBOARD_PORT/redoc"
exec uvicorn app:app \
exec uvicorn app.app:app \
--host 0.0.0.0 \
--port $LOGBOARD_PORT \
--reload \
@@ -28,7 +28,7 @@ if [ "$DEBUG_MODE" = "true" ]; then
else
echo "Starting in PRODUCTION mode..."
exec uvicorn app:app \
exec uvicorn app.app:app \
--host 0.0.0.0 \
--port $LOGBOARD_PORT \
--log-level info