This repository has been archived on 2021-09-15. You can view files and clone it, but cannot push or open issues or pull requests.
RepoApi/Config.py

15 lines
255 B
Python

import os
class ConfigProd(object):
DEBUG = False
TESTING = False
BASE_DIR = os.path.abspath(os.path.dirname(__file__))
REPOS_JSON_CONFIG_PATH = "repos.json"
class ConfigDebug(ConfigProd):
DEBUG = True
CURRENT_CONFIG = ConfigProd