Formatting
This commit is contained in:
parent
2afa38d8cf
commit
8e9102eb2b
|
@ -13,7 +13,8 @@ class Environment(object):
|
||||||
_MONGO_DB_NAME = "monkeyisland"
|
_MONGO_DB_NAME = "monkeyisland"
|
||||||
_MONGO_DB_HOST = "localhost"
|
_MONGO_DB_HOST = "localhost"
|
||||||
_MONGO_DB_PORT = 27017
|
_MONGO_DB_PORT = 27017
|
||||||
_MONGO_URL = os.environ.get("MONKEY_MONGO_URL", "mongodb://{0}:{1}/{2}".format(_MONGO_DB_HOST, _MONGO_DB_PORT, str(_MONGO_DB_NAME)))
|
_MONGO_URL = os.environ.get("MONKEY_MONGO_URL",
|
||||||
|
"mongodb://{0}:{1}/{2}".format(_MONGO_DB_HOST, _MONGO_DB_PORT, str(_MONGO_DB_NAME)))
|
||||||
_DEBUG_SERVER = False
|
_DEBUG_SERVER = False
|
||||||
_AUTH_EXPIRATION_TIME = timedelta(hours=1)
|
_AUTH_EXPIRATION_TIME = timedelta(hours=1)
|
||||||
|
|
||||||
|
@ -29,7 +30,6 @@ class Environment(object):
|
||||||
|
|
||||||
_MONKEY_VERSION = "1.7.0"
|
_MONKEY_VERSION = "1.7.0"
|
||||||
|
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.config = None
|
self.config = None
|
||||||
self._testing = False # Assume env is not for unit testing.
|
self._testing = False # Assume env is not for unit testing.
|
||||||
|
|
Loading…
Reference in New Issue