Simplified django-springsteen Deploy on GAE
I patched django-springsteen to take advantage of Google App Engine's memcached api, and as promised have streamlined the process of deploying Springsteen on GAE.
Checkout the repository.
git clone git://github.com/lethain/django-springsteen.gitRun the
pack_for_gae.shscript.chmod +x ./scripts/pack_for_gae.sh ./scripts/pack_for_gae
Open up
gae/app.yamland change the first line fromdjangosearchto the name of the application you registered on GAE.Create the file
gae/boss_settings.pywhich should look like this:BOSS_APP_ID = 'my-boss-app-id'
Run that sucker.
dev_appserver.py ./
You'll probably still want to read the first tutorial to get an idea of how to customize Springsteen and take advantage of its functionality.
Let me know if there are any issues.