This is the initial push of the outline of the life dashboard

This commit is contained in:
YOUNG
2026-03-09 12:52:48 -05:00
parent bf1e4e754f
commit 7596a5f382
47 changed files with 6522 additions and 3 deletions

13
backend/app/config.py Normal file
View File

@@ -0,0 +1,13 @@
from pydantic_settings import BaseSettings
class Settings(BaseSettings):
DATABASE_URL: str = "postgresql://admin:AAAbraK!!!@localhost:5432/life"
AUTH_USERNAME: str = "will"
AUTH_PASSWORD: str = "changeme"
JWT_SECRET: str = "changeme-secret"
JWT_ALGORITHM: str = "HS256"
JWT_EXPIRE_HOURS: int = 24
settings = Settings()