connection to another file

This commit is contained in:
Ilya Zverev 2015-03-27 11:36:06 +03:00
parent ade400c610
commit d29277959c
2 changed files with 4 additions and 2 deletions

View file

@ -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):

View file

@ -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