forked from aws-samples/eb-python-flask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapplication.py
25 lines (19 loc) · 838 Bytes
/
application.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import flask
import os
application = flask.Flask(__name__)
# Only enable Flask debugging if an env var is set to true
application.debug = os.environ.get('FLASK_DEBUG') in ['true', 'True']
# Get application version from env
app_version = os.environ.get('APP_VERSION')
# Get cool new feature flag from env
enable_cool_new_feature = os.environ.get('ENABLE_COOL_NEW_FEATURE') in ['true', 'True']
@application.route('/')
def hello_world():
message = "Hello, world!"
return flask.render_template('index.html',
title=message,
flask_debug=application.debug,
app_version=app_version,
enable_cool_new_feature=enable_cool_new_feature)
if __name__ == '__main__':
application.run(host='0.0.0.0')