connection to another file
This commit is contained in:
parent
ade400c610
commit
d29277959c
2 changed files with 4 additions and 2 deletions
|
@ -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):
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue