I got it working with GAE 1.1.2, but not with GAE 1.1.3, much like matdrapeau at this link: http://code.google.com/p/appengine-monkey/wiki/Pylons
So, I guess the same bug is preventing both me and matdrapeau from getting later versions working. Any ideas what it might be? thanks Also, there were another 2 mistakes in my script, here is a newly revised version: #!/bin/sh # newpylonsgae shell script name=$1; shift #appengine_monkey_path=$1; shift google_appengine_path=$1; shift # google_appengine_path=/usr/local/google_appengine # appengine_monkey_path=/home/bshanks/prog/appengine-monkey/ svn checkout http://appengine-monkey.googlecode.com/svn/trunk appengine-monkey appengine_monkey_path=appengine-monkey python $appengine_monkey_path/appengine-boot.py --paste-deploy $name cd $name source bin/activate easy_install -U setuptools bin/easy_install Pylons rm lib/python2.5/site-packages/simplejson-*-py2.5-*.egg/simplejson/ _speedups.py cd src/ ../bin/paster create -t pylons $name # choose template engine; choose no sqlalchemy cd $name python setup.py develop ../../bin/python -m pth_relpath_fixup echo -e "[app:main]\nuse = config:src/$name/development.ini" > ../../ development.ini perl -p -e 's/\Qbeaker.session.secret = somesecret\Q/ beaker.session.secret = somesecret\nbeaker.session.type = google \nbeaker.session.table_name = Session/' -i development.ini perl -p -e 's/module_directory/#module_directory/' -i $name/config/ environment.py deactivate cd ../../../ python $google_appengine_path/dev_appserver.py $name --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en -~----------~----~----~----~------~----~------~--~---
