46 lines
1.2 KiB
Python
46 lines
1.2 KiB
Python
import redis.asyncio as redis_lib
|
|
from functools import lru_cache
|
|
from pydantic import BaseSettings, RedisDsn, PostgresDsn
|
|
|
|
|
|
class Settings(BaseSettings):
|
|
"""
|
|
Settings class for the shop app.
|
|
"""
|
|
root_address: str = "http://127.0.0.1:8000"
|
|
redis: RedisDsn = "redis://localhost:6379/0?decode_responses=True"
|
|
skip_email_verification: bool = False
|
|
db_url: str | PostgresDsn = "sqlite:///classquiz.db"
|
|
hcaptcha_key: str
|
|
mail_address: str
|
|
mail_password: str
|
|
mail_username: str
|
|
mail_server: str
|
|
mail_port: int
|
|
secret_key: str
|
|
imgur_client_id: str = "27aa1687703ddb9"
|
|
access_token_expire_minutes: int = 30
|
|
cache_expiry: int = 86400
|
|
sentry_dsn: str | None = "https://4981de1f72f24fd7b5e21b8913b93a02@o661934.ingest.sentry.io/6254641"
|
|
|
|
# storage_backend
|
|
storage_backend: str | None = "deta"
|
|
# if storage_backend == "deta":
|
|
deta_project_key: str | None
|
|
deta_project_id: str | None
|
|
|
|
# if storage_backend == "local":
|
|
storage_path: str | None
|
|
|
|
class Config:
|
|
env_file = ".env"
|
|
env_file_encoding = 'utf-8'
|
|
|
|
|
|
@lru_cache()
|
|
def settings() -> Settings:
|
|
return Settings()
|
|
|
|
|
|
redis: redis_lib.client.Redis = redis_lib.Redis().from_url(settings().redis)
|