eliasklughammer / Cappuccino-X-Tornado
- Source
- Commits
- Network (1)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Wed Sep 30 03:35:06 -0700 2009 | |
| |
README.markdown | Tue Dec 22 00:50:44 -0800 2009 | |
| |
cappuccino_x_tornado.py | Wed Sep 30 03:35:06 -0700 2009 | |
| |
static/ | Sun Jan 03 06:11:14 -0800 2010 | |
| |
tornado/ | Wed Sep 30 03:35:06 -0700 2009 |
Cappuccino X Tornado
by Elias Klughammer
Introduction
This is a demo application for bringing together the Cappuccino Framework (http://www.cappuccino.org) and the Tornado Web server. (http://www.tornadoweb.org)
In opposite to my Cappuccino X Juggernaut implementation there is no flash needed now. The tornado web server is a lightweight well-scaling non-blocking webserver with the ability for pushing data through http-connections. For the record: Tornado is the technology behind FriendFeed.
Here you can see a demonstration of the sample app: http://www.youtube.com/watch?v=1MPTxS9uyT4
Installation
1. Download and install Tornado
Download http://www.tornadoweb.org/static/tornado-0.2.tar.gz
tar xvzf tornado-0.2.tar.gz
cd tornado-0.2
python setup.py build
sudo python setup.py install
2. Install additional packages
Mac OS X:
sudo easy_install setuptools pycurl==7.16.2.1 simplejson
Ubuntu Linux:
sudo apt-get install python-dev python-pycurl python-simplejson
3. Download and unpack the demo app
4. Start the tornado server in the demo app folder
python cappuccino_x_tornado.py
5. Open your browser and go to http://localhost:8888
