Files
2012-11-04 17:13:07 -05:00

20 lines
774 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 = 'longsecretkeykfdasferuiawohnjlkasdfjkl'
TITLE = 'app'
SUBTITLE = 'A Flask Template with Bootstrap 2.2'
AUTHOR = 'Eric S. Bullington'
AUTHOR_EMAIL = 'eric.s.bullington@gmail.com'
KEYWORDS = 'python, Flask, template, Bootstrap, authorization'
DESCRIPTION = 'A Flask template, as opposed to a plug-in, for easy bootstraping of Flask projects involving SQLAlchemy and Bootstrap'