integrate/app/consumer/wekan/settings.py

10 lines
212 B
Python
Raw Normal View History

2022-04-29 14:13:54 +02:00
from pydantic import BaseSettings
class WekanSettings(BaseSettings):
baseurl: str = ""
user: str = ""
password: str = ""
class Config:
env_file = '.env'
env_prefix = 'WEKAN_'