2015-12-21 21:08:50 +00:00
|
|
|
import os
|
|
|
|
|
2015-12-25 01:37:49 +00:00
|
|
|
secret = open(".secret_key", "a+b")
|
|
|
|
contents = secret.read()
|
|
|
|
if not contents:
|
|
|
|
key = os.urandom(128)
|
|
|
|
secret.write(key)
|
|
|
|
secret.flush()
|
|
|
|
else:
|
|
|
|
key = contents
|
|
|
|
secret.close()
|
2015-12-21 21:08:50 +00:00
|
|
|
|
2015-12-25 01:37:49 +00:00
|
|
|
SECRET_KEY = key
|
2015-12-24 02:06:49 +00:00
|
|
|
|
|
|
|
SQLALCHEMY_DATABASE_URI = "mysql://root:i_hate_passwords@localhost/easyctf"
|
|
|
|
SQLALCHEMY_TRACK_MODIFICATIONS = False
|
|
|
|
|
2016-01-03 00:40:28 +00:00
|
|
|
UPLOAD_FOLDER = os.path.normpath("files")
|
2016-01-02 20:45:05 +00:00
|
|
|
|
2015-12-21 21:08:50 +00:00
|
|
|
CTF_BEGIN = 0 # To be used later
|
|
|
|
CTF_END = 0 # To be used later
|