summaryrefslogtreecommitdiffstats
path: root/app.py
diff options
context:
space:
mode:
Diffstat (limited to 'app.py')
-rw-r--r--app.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/app.py b/app.py
index 6b96cae..114da0c 100644
--- a/app.py
+++ b/app.py
@@ -8,7 +8,7 @@ from werkzeug import secure_filename
fit = Fit('static/fit.git')
app = Flask(__name__)
-app.secret_key = 'naidiequ8zies1weed4we6iexood1Bae'
+app.config.from_object('settings')
ALLOWED_EXTENSIONS = set(
['txt', 'pdf', 'png', 'jpg', 'jpeg', 'gif', 'zip', 'gs', 'gz' ])
@@ -89,4 +89,4 @@ def index():
if __name__ == "__main__":
- app.run(debug=True)
+ app.run()