integrate/app/consumer/wekan/settings.py
Philipp Rothmann 73c5440454 uff
2022-04-29 14:56:51 +02:00

10 lines
No EOL
212 B
Python

from pydantic import BaseSettings
class WekanSettings(BaseSettings):
baseurl: str = ""
user: str = ""
password: str = ""
class Config:
env_file = '.env'
env_prefix = 'WEKAN_'