9 lines
No EOL
201 B
Python
9 lines
No EOL
201 B
Python
from pydantic import BaseSettings, Field
|
|
|
|
class AuthentikSettings(BaseSettings):
|
|
baseurl: str = ""
|
|
token: str = ""
|
|
|
|
class Config:
|
|
env_file = '.env'
|
|
env_prefix = 'AUTHENTIK_' |