· 7 years ago · Nov 19, 2018, 02:20 AM
1__all__ = ['webapp2_config']
2
3webapp2_config = {
4 'webapp2_extras.sessions': {
5 'secret_key': 'Put some magical secret here.',
6 },
7 'webapp2_extras.jinja2': {
8 'environment_args': {
9 'autoescape': True,
10 },
11 },
12}