[profiles] Add user profile context override

This commit is contained in:
2025-04-02 22:13:43 -04:00
parent 23d3e19db9
commit 0cc87a2dbe
4 changed files with 636 additions and 2 deletions

View File

@ -77,6 +77,17 @@ TODOIST_CLIENT_SECRET = os.getenv("VROBBLER_TODOIST_CLIENT_SECRET", "")
GOOGLE_API_KEY = os.getenv("VROBBLER_GOOGLE_API_KEY", "")
LICHESS_API_KEY = os.getenv("VROBBLER_LICHESS_API_KEY", "")
DEFAULT_TASK_CONTEXT_TAGS = [
"Dev",
"Home",
"Errand",
"Blog",
"Mail",
"Call",
"Meeting",
"Exercise",
]
DEFAULT_AUTO_FIELD = "django.db.models.BigAutoField"
TIME_ZONE = os.getenv("VROBBLER_TIME_ZONE", "US/Eastern")