integrate/app/settings.py
Philipp Rothmann 00de186ad4 authentik api
2022-03-04 18:51:51 +01:00

11 lines
No EOL
276 B
Python

from pydantic import BaseSettings, Field
class Settings(BaseSettings):
wekan_baseurl: str = Field(..., env="WEKAN_URL")
wekan_user: str = Field(..., env="WEKAN_USER")
wekan_pw: str = Field(..., env="WEKAN_PASS")
class Config:
env_file = '.env'
nc