public
Description: Framework for creating Twitter apps on App Engine
Homepage: http://tav.github.com/tweetapp
Clone URL: git://github.com/tav/tweetapp.git
commit  7530186499c60ffe28bdea7a7e6bdd8fc48da005
tree    0ad4db9b7fbfe9942b7e761c4035cf5ed83402a1
parent  15d2c18183deca496e4c8b23216f4e439b608469
name age message
file .gitignore Mon Feb 16 02:06:15 -0800 2009 Updated .gitignore to the new layout. [tav]
file README.txt Wed Feb 18 01:52:17 -0800 2009 Updated documentation; Follow @tav for updates. [tav]
directory standalone/ Loading commit data...
README.txt
========
TweetApp
========

Development is still happening and will stabilise before the end of February.
Follow @tav on http://twitter.com/tav to keep up to date. Will have some
documentation up by that time too...

A framework for creating Twitter apps on Google App Engine.

See the ``old`` directory for a standalone webapp oauth handler for Twitter.

--------------------------------------------------------------------------------

# THIS DOCUMENTATION IS NOT ACCURATE YET... IT WILL BE BY THE END OF FEB. THX!

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 app/source/config.py.in app/source/config.py

Likewise with the default ``app/app.yaml``.

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

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

  $ ./bin/run.sh

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

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

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

  $ ./bin/update.sh