umm, sorry, i sent the wrong version of the shell script in the previous message. it should have had the line "appengine_monkey_path=appengine-monkey", rather than "appengine_monkey_path=.". here is the 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 "[app:main]\nuse = config:src/taghog/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 -~----------~----~----~----~------~----~------~--~---
