prmtl / appfy.recipe.gae

Buildout recipes for App Engine development.
Other
11 stars 5 forks source link

Add initialization code to generated python executable #8

Closed hello-josh closed 10 years ago

hello-josh commented 10 years ago

Since app engine uses specific versions of libraries based upon items specified in app.yaml it would be nice if the generated python interpreter (and other scripts) including the following initialization code in order to load the proper libraries.

import dev_appserver
dev_appserver.fix_sys_path()
prmtl commented 10 years ago

Interesting idea, In my use cases I never needed it since the problem was resolved differently (due to the specific of the projects). I'll take a closer look.

prmtl commented 10 years ago

Merged. Thanks!