forked from glitchdotcom/WebPutty
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbootstrap.py
More file actions
37 lines (31 loc) · 1.11 KB
/
bootstrap.py
File metadata and controls
37 lines (31 loc) · 1.11 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env python
"""Google App Engine uses this file to run your Flask application."""
import os
from wsgiref.handlers import CGIHandler
import settings
from utils import adjust_sys_path
adjust_sys_path()
if settings.debug:
adjust_sys_path('ziplibs')
# Enable ctypes for Jinja debugging
from google.appengine.tools.dev_appserver import HardenedModulesHook
HardenedModulesHook._WHITE_LIST_C_MODULES += ['_ctypes', 'gestalt']
else:
adjust_sys_path(os.path.join('ziplibs.zip', 'ziplibs'))
from app import create_app
from werkzeug_debugger_appengine import get_debugged_app
from flaskext.csrf import csrf
from gae_mini_profiler import profiler, config as profiler_config
def main():
app = create_app()
csrf(app)
# If we're on the local server, let's enable Flask debugging.
# For more information: http://goo.gl/RNofH
if settings.debug:
app.debug = True
app = get_debugged_app(app)
settings.debug_profiler_enabled = profiler_config.should_profile(app)
app = profiler.ProfilerWSGIMiddleware(app)
CGIHandler().run(app)
if __name__ == '__main__':
main()