set example app names directly

This commit is contained in:
David Lord 2017-05-27 12:47:33 -07:00
parent b702d7b8cb
commit 4477a85ceb
3 changed files with 4 additions and 4 deletions

View file

@ -25,7 +25,7 @@ DEBUG = True
SECRET_KEY = 'development key'
# create our little application :)
app = Flask(__name__)
app = Flask('minitwit')
app.config.from_object(__name__)
app.config.from_envvar('MINITWIT_SETTINGS', silent=True)