2015-10-05 14:03:19 +01:00
|
|
|
# Make a copy of this called config.py in the application root directory.
|
|
|
|
# Change as required.
|
|
|
|
SQLALCHEMY_DATABASE_URI = 'sqlite:///wanikani.db'
|
|
|
|
SECRET_KEY = "putabettersecretkeyhere"
|
2015-10-05 16:06:10 +01:00
|
|
|
DEBUG = False
|
2015-10-05 23:19:11 +01:00
|
|
|
PORT = 5000
|
2016-01-24 19:01:53 +00:00
|
|
|
SQLALCHEMY_TRACK_MODIFICATIONS = False
|