18 lines
606 B
Python
18 lines
606 B
Python
import os
|
|
import json
|
|
import shutil
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# Global variables that is None by default and gets overwritten in other modules
|
|
|
|
app = None # main.py -> Flask App
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# Global variables that initializes on first load of module
|
|
|
|
if not os.path.isfile("config.json"):
|
|
print("`config.json` were not found! Copying default_config and continuing...")
|
|
shutil.copy("default_config.json", "config.json")
|
|
|
|
with open("config.json", "r") as f:
|
|
config = json.load(f) |