March 5, 2009.
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.git
Run the pack_for_gae.sh
script.
chmod +x ./scripts/pack_for_gae.sh
./scripts/pack_for_gae
Open up gae/app.yaml
and change the first line from
djangosearch
to the name of the application you
registered on GAE.
Create the file gae/boss_settings.py
which 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.