1
0
Fork 0
mirror of https://github.com/prise6/smart-iss-posts synced 2024-05-02 21:53:10 +02:00
smart-iss-posts/iss/init_config.py
2019-11-11 04:16:43 +01:00

9 lines
195 B
Python

import os
from dotenv import find_dotenv, load_dotenv
from iss.tools import Config
load_dotenv(find_dotenv())
CONFIG = Config(project_dir = os.getenv("PROJECT_DIR"), mode = os.getenv("MODE"))