1
0
Fork 0
mirror of https://github.com/prise6/smart-iss-posts synced 2024-04-27 19:32:44 +02:00
smart-iss-posts/iss/init_config.py

9 lines
195 B
Python
Raw Normal View History

2019-11-11 04:16:43 +01:00
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"))