riu-rd's picture
Added Temp Diff Feature
6161ee9 verified
raw
history blame contribute delete
368 Bytes
import os
from dotenv import load_dotenv
env_path = os.path.join(os.path.dirname(__file__), os.getenv('ENV_FILE') or ".env")
load_dotenv(dotenv_path=env_path, override=True)
VERSION = os.environ.get("VERSION")
APP_HOST = os.environ.get("HOST")
APP_PORT = os.environ.get("PORT")
APP_DEBUG = bool(os.environ.get("DEBUG"))
MAPBOX_TOKEN = os.environ.get("MAPBOX_TOKEN")