22 lines
529 B
Python
22 lines
529 B
Python
from functools import lru_cache
|
|
from pydantic_settings import BaseSettings, SettingsConfigDict
|
|
|
|
|
|
class Settings(BaseSettings):
|
|
model_config = SettingsConfigDict(env_file=".env", extra="ignore")
|
|
|
|
SUPABASE_URL: str
|
|
SUPABASE_ANON_KEY: str
|
|
SUPABASE_SERVICE_ROLE_KEY: str
|
|
|
|
FIREBASE_CREDENTIALS_PATH: str = "app/data/secrets/recoleccion-app-firebase-adminsdk-fbsvc-3da79d2a4c.json"
|
|
SIMULATION_TICK_SECONDS: int = 10
|
|
|
|
|
|
@lru_cache
|
|
def get_settings() -> Settings:
|
|
return Settings()
|
|
|
|
|
|
settings = get_settings()
|