Re: Using Mako Templates in Pyramid with Google App Engine

2011-01-23 Thread Rocky Burt
I think it's often easy to forget just how unnecessary the Paster portion of configuration really is ;) -- You received this message because you are subscribed to the Google Groups "pylons-devel" group. To post to this group, send email to pylons-devel@googlegroups.com. To unsubscribe from this

Re: Using Mako Templates in Pyramid with Google App Engine

2011-01-21 Thread Chris McDonough
Pass it in to the Configurator as a "setting" while setting up your application: config = Configurator(settings={'mako.directories':['house:templates']}) - C On Fri, 2011-01-21 at 12:35 -0800, svaha wrote: > With Pyramid and mod_wsgi, to use mako templates you just add this > line to development

Using Mako Templates in Pyramid with Google App Engine

2011-01-21 Thread svaha
With Pyramid and mod_wsgi, to use mako templates you just add this line to development.ini: mako.directories = house:templates Unfortunately, Pyramid in the Google App Engine doesn't have a development.ini file. What is the best way to pass this environment variable without placing it in developme