6 lines
229 B
Python
6 lines
229 B
Python
# 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"
|
|
DEBUG = False
|
|
SERVER_NAME = '127.0.0.1:5000' |