Debugging Jinja2 templates in Google App Engine

Jinja2 needs some python modules that are forbidden in the python sandbox provided by Google App Engine. Fortunately its fairly easy to white list them in the SDK local development server — currently there is no workaround for production. PRODUCTION = not os.environ.get(’SERVER_SOFTWARE’, ”).startswith(’Dev’) if not PRODUCTION: # enable jinja2 …

Back to Top