feat: Implement initial FastAPI application structure with configuration, core services, and an admin UI.

This commit is contained in:
2026-01-29 13:15:26 +08:00
parent 9cb938be9a
commit a5300eb379
4 changed files with 22 additions and 5 deletions

View File

@@ -14,5 +14,7 @@ class Settings:
ALGORITHM: str = "HS256"
ACCESS_TOKEN_EXPIRE_MINUTES: int = 60
ADMIN_PASSWORD: str = os.getenv("ADMIN_PASSWORD", "admin123")
ENVIRONMENT: str = os.getenv("ENVIRONMENT", "development")
settings = Settings()