diff --git a/.gitignore b/.gitignore index 712585e..6590568 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ *.pyc logs/*.log +local.cfg diff --git a/app.cfg b/app.cfg index 893c948..cc61e0d 100644 --- a/app.cfg +++ b/app.cfg @@ -9,11 +9,11 @@ DEBUG = True # 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' +SQLALCHEMY_DATABASE_URI = 'postgresql://user:password@127.0.0.1/app' +SECRET_KEY = 'longsecretkeykfdasferuiawohnjlkasdfjkl' TITLE = 'app' -SUBTITLE = 'A Flask Template with Bootstrap' +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 = '' +DESCRIPTION = 'A Flask template, as opposed to a plug-in, for easy bootstraping of Flask projects involving SQLAlchemy and Bootstrap' diff --git a/templates/index.html b/templates/index.html index 45ea663..4e32855 100644 --- a/templates/index.html +++ b/templates/index.html @@ -8,8 +8,8 @@
This is a template for a simple marketing or informational website. It includes a large callout called the hero unit and three supporting pieces of content. Use it as a starting point to create something more unique.
+This is Bootstrap's template for a simple marketing or informational website. It includes a large callout called the hero unit and three supporting pieces of content. Use it as a starting point to create something more unique. Note that the "Login" option above should be operational if you have installed all the dependencies specified in requirements.txt and configured your Postgres database in app.cfg.