Working on user, backend.

This commit is contained in:
charles-gauthereau
2024-10-27 11:51:53 +01:00
parent 1069b2c3ad
commit b62261896b
28 changed files with 7351 additions and 3383 deletions
+9
View File
@@ -0,0 +1,9 @@
from typing import List
from settings.base import Settings
class DevSettings(Settings):
ALLOWED_HOSTS: List[str] = ["*"]
SECRET_KEY: str = "changeme-secretkey"
STAGE: bool = True