We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16397ab commit 2ea5e83Copy full SHA for 2ea5e83
app/core/config.py
@@ -6,6 +6,7 @@
6
from functools import lru_cache
7
8
from pydantic_settings import BaseSettings
9
+from typing import Optional
10
11
12
class Settings(BaseSettings):
@@ -50,6 +51,12 @@ class Settings(BaseSettings):
50
51
# Building sample limit for performance
52
BUILDING_SAMPLE_LIMIT: int = 2000
53
54
+ # Database settings
55
+ SUNTRACE_USE_POSTGIS: bool = False
56
+ SUNTRACE_DATABASE_URI: Optional[str] = None
57
+
58
59
60
class Config:
61
env_file = ".env"
62
case_sensitive = True
0 commit comments