mirror of
https://git.isptech.ru/ISPsystem/isp-maintenance.git
synced 2025-02-01 19:00:52 +01:00
10 lines
175 B
Python
10 lines
175 B
Python
|
from environs import Env
|
||
|
|
||
|
|
||
|
# Init environment:
|
||
|
env = Env()
|
||
|
|
||
|
# read .env file, if it exists
|
||
|
# reed more about .env file here: https://github.com/sloria/environs
|
||
|
env.read_env()
|