음성 재생과 운영 배포 정리

This commit is contained in:
Yun Chan 2026-06-28 12:18:20 +09:00
parent 8ed185ce6c
commit ac7db95542
1020 changed files with 46863 additions and 2175 deletions

View file

@ -148,7 +148,9 @@ async def healthcheck() -> bool:
to_regclass('app.app_user') IS NOT NULL AS has_user,
to_regclass('app.auth_session') IS NOT NULL AS has_auth_session,
to_regclass('app.user_preferences') IS NOT NULL AS has_preferences,
to_regclass('app.admin_engine_config') IS NOT NULL AS has_engine_config
to_regclass('app.admin_engine_config') IS NOT NULL AS has_engine_config,
to_regclass('app.admin_health_event') IS NOT NULL AS has_admin_health_event,
to_regclass('app.support_ticket') IS NOT NULL AS has_support_ticket
"""
)
return bool(
@ -157,6 +159,8 @@ async def healthcheck() -> bool:
and row["has_auth_session"]
and row["has_preferences"]
and row["has_engine_config"]
and row["has_admin_health_event"]
and row["has_support_ticket"]
)
except Exception:
return False