feat: guest user

This commit is contained in:
2026-05-13 22:31:47 +03:00
parent cf9052ab7a
commit 11b8a483c4
6 changed files with 148 additions and 7 deletions
+5
View File
@@ -19,6 +19,11 @@ class Settings(BaseSettings):
FIRST_SUPER_USER_PASS: str
FIRST_SUPER_USER_USERNAME: str
GUEST_USER_EMAIL: str = "guest@example.com"
GUEST_USER_USERNAME: str = "guest"
GUEST_USER_DISPLAY_NAME: str = "Гость"
GUEST_USER_PASSWORD: str = "guest"
CORS_ORIGINS: List[str] = ["http://localhost:5500", "http://127.0.0.1:5500", "http://localhost:8080", "http://127.0.0.1:8080", "null"]
CORS_HEADERS: List[str] = ["*"]
CORS_METHODS: List[str] = ["*"]