annot-server/webapp.py
changeset 13 435d5c15275a
parent 8 e72d0e847d5d
--- a/annot-server/webapp.py	Fri Oct 10 17:08:31 2014 +0200
+++ b/annot-server/webapp.py	Mon Oct 13 12:43:47 2014 +0200
@@ -8,8 +8,11 @@
 
 from flask import Flask, render_template
 
+import config
+
 app = Flask(__name__)
 app.secret_key = str(uuid.uuid4())
+app.config.from_object(config)
 
 @app.route('/')
 def page_home():