Add admin account with user management endpoints

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-24 20:45:19 -07:00
parent 7994cc5ff2
commit 48a15c54f6
10 changed files with 238 additions and 5 deletions

View File

@@ -6,6 +6,8 @@ class Settings(BaseSettings):
secret_key: str
access_token_expire_minutes: int = 480
algorithm: str = "HS256"
admin_username: str
admin_password: str
class Config:
env_file = ".env"