12 lines
187 B
Python
12 lines
187 B
Python
from pydantic import BaseSettings
|
|
|
|
|
|
class Config(BaseSettings):
|
|
db_url: str
|
|
host: str = '127.0.0.1'
|
|
port: int = 8888
|
|
|
|
|
|
config = Config(_env_file='.env')
|
|
|
|
__all__ = ['config']
|