mirror of
https://github.com/wassname/flask-bootstrap.git
synced 2026-06-27 16:10:14 +08:00
20 lines
657 B
INI
20 lines
657 B
INI
#######################################
|
|
########APP Settings ##########
|
|
#######################################
|
|
|
|
# enable debug mode. Disable this in production!
|
|
DEBUG = True
|
|
|
|
# Secret key for app encryption.
|
|
# Simple way to generate a random secret key:
|
|
#
|
|
# python -c "print repr(__import__('os').urandom(40))"
|
|
SQLALCHEMY_DATABASE_URI = 'postgresql://eric:kfdasferuiawohnjlkasdfjkl@127.0.0.1/app'
|
|
SECRET_KEY = 'kfdasferuiawohnjlkasdfjkl'
|
|
TITLE = 'app'
|
|
SUBTITLE = 'A Flask Template with Bootstrap'
|
|
AUTHOR = 'Eric S. Bullington'
|
|
AUTHOR_EMAIL = 'eric.s.bullington@gmail.com'
|
|
KEYWORDS = 'python, Flask, template, Bootstrap, authorization'
|
|
DESCRIPTION = ''
|