public
Fork of tav/tweetapp
Description: Framework for creating Twitter apps on App Engine
Homepage: http://tav.github.com/tweetapp
Clone URL: git://github.com/aral/tweetapp.git
tav (author)
Sat Feb 14 15:38:41 -0800 2009
commit  7ba5452b9cc3787cc5f546303ffa44422778c0e5
tree    12511e133a2a6de4bc2e9cb4fd818af93ef8741d
parent  047c4b1640a854276bb5f78639b6d50910590b53
name age message
file .gitignore Loading commit data...
file README.txt Sat Feb 14 15:38:41 -0800 2009 Rudimentary TweetApp documentation. [tav]
file run.sh Fri Feb 13 04:30:33 -0800 2009 Wrapper scripts for running the devserver and d... [tav]
directory source/
file update.sh Fri Feb 13 04:30:33 -0800 2009 Wrapper scripts for running the devserver and d... [tav]
README.txt
========
TweetApp
========

A framework for creating Twitter apps on Google App Engine.

To start developing with TweetApp, grab the code::

  $ git clone git://github.com/tav/tweetapp.git

Unzip the latest App Engine SDK as ``google_appengine`` inside the directory::

  $ cd tweetapp
  $ curl -O http://googleappengine.googlecode.com/files/google_appengine_1.1.9.zip
  $ unzip google_appengine_1.1.9.zip
  $ rm google_appengine_1.1.9.zip

Copy over the ``.in`` files and edit them to suit your app::

  $ cp source/app.yaml.in source/app.yaml
  $ cp source/config.py.in source/config.py
  $ cp source/main.py.in source/main.py

You define services in ``main.py`` which is imported by ``root.py`` on startup.

Test your app locally by running the dev_appserver, run.sh provides a wrapper::

  $ ./run.sh

You can pass additional parameters to it, e.g.::

  $ ./run.sh --port=8001 --require_indexes
  $ ./run.sh --help

And, once you are happy with the app, deploy it using::

  $ ./update.sh