sets default admin creds in docker compose. first pass remote builder feature

This commit is contained in:
2026-07-04 18:40:29 +00:00
parent 78dde4fd0a
commit 7a04fa7c84
17 changed files with 1489 additions and 6 deletions
+2 -1
View File
@@ -10,7 +10,7 @@ from app.config import settings
from app.database import async_session, engine
from app.models import Base, Show, StationConfig, HistoryEntry, TeamMember, CommunityHighlight, Underwriter
from app.user_models import User
from app.api import events, auth, station_config, history, team, community, shows, storage, underwriters, stats
from app.api import events, auth, station_config, history, team, community, shows, storage, underwriters, stats, mobile_builds
def _cleanup_orphaned_sequences(sync_conn):
@@ -223,6 +223,7 @@ app.include_router(shows.router, prefix="/api/shows", tags=["shows"])
app.include_router(storage.router, prefix="/api/storage", tags=["storage"])
app.include_router(underwriters.router, prefix="/api/underwriters", tags=["underwriters"])
app.include_router(stats.router, prefix="/api/stats", tags=["stats"])
app.include_router(mobile_builds.router, prefix="/api/mobile-builds", tags=["mobile-builds"])
# Dev-only admin router (disabled in production)
if settings.ENV != "production":