From d29277959c01e0b5226e45868bcc697e01608951 Mon Sep 17 00:00:00 2001 From: Ilya Zverev Date: Fri, 27 Mar 2015 11:36:06 +0300 Subject: [PATCH] connection to another file --- server/borders-api.py | 2 +- server/config.py | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/server/borders-api.py b/server/borders-api.py index 40e533e..d817b15 100755 --- a/server/borders-api.py +++ b/server/borders-api.py @@ -22,7 +22,7 @@ def hello_world(): @app.before_request def before_request(): - g.conn = psycopg2.connect('dbname=borders') + g.conn = psycopg2.connect(config.CONNECTION) @app.teardown_request def teardown(exception): diff --git a/server/config.py b/server/config.py index 969178d..9dbb878 100644 --- a/server/config.py +++ b/server/config.py @@ -1,5 +1,7 @@ +# postgresql connection string +CONNECTION = 'dbname=borders' # passed to flask.Debug -DEBUG = False +DEBUG = True # if the main table is read-only READONLY = False # main table name