An AppEngine app to embed files from a github repository like a gist
http://github.com/robertkrimen/gist-it
You can try it at gist-it.appspot.com
Launch a working example with:
dev_appserver.py .
The gisting handler is located at app.py/dispatch_gist_it
Associated the handler with a path is pretty easy, for example:
wsgi_application = webapp.WSGIApplication( [
( r'(.*)', dispatch_gist_it ),
], debug=True )
To run python unit2 tests:
make test
To run perl tests (against a running server):
make t
Robert Krimen ([email protected])