Update config to use the script's path

This commit is contained in:
Lucas Verney 2015-12-26 18:24:23 +01:00
parent df6949d98f
commit c9201b49d0
1 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
import os
basepath = os.path.dirname(os.path.realpath(__file__))
database = ":memory:"
# database = "db.sqlite3"
# database = os.path.join(basepath, "db.sqlite3")
host = "localhost"
port = 8080