Files
flask-bootstrap/app.cfg
T
Eric S. Bullington 14f006ee5e Initial commit
2012-03-06 12:57:28 -05:00

20 lines
640 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://user:password@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 = ''