-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.py
38 lines (26 loc) · 1.14 KB
/
settings.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import os
from functools import lru_cache
from pydantic import ConfigDict, PostgresDsn
from pydantic_settings import BaseSettings
class Settings(BaseSettings):
"""Application settings"""
model_config = ConfigDict(case_sensitive=True, env_file=".env", extra="allow")
DB_DSN: PostgresDsn = 'postgresql://postgres@localhost:5432/postgres'
ROOT_PATH: str = '/' + os.getenv('APP_NAME', '')
CORS_ALLOW_ORIGINS: list[str] = ['*']
CORS_ALLOW_CREDENTIALS: bool = True
CORS_ALLOW_METHODS: list[str] = ['*']
CORS_ALLOW_HEADERS: list[str] = ['*']
TELEGRAM_BOT_TOKEN: str | None = None
TELEGRAM_TARGET_CHANNEL_ID: int | None = None # ID канала Telegram для пересылки постов
VK_BOT_GROUP_ID: int | None = None
VK_BOT_TOKEN: str | None = None
VK_MONITORED_GROUP_ID: int | None = None # ID группы ВК для мониторинга
GITHUB_APP_ID: int | None = None
GITHUB_WEBHOOK_SECRET: str | None = None
GITHUB_PRIVATE_KEY: str | None = None
DISCORD_PUBLIC_KEY: str | None = None
@lru_cache
def get_settings() -> Settings:
settings = Settings()
return settings