diff options
author | Armin Ronacher <armin.ronacher@active-4.com> | 2011-12-05 22:38:43 -0500 |
---|---|---|
committer | Armin Ronacher <armin.ronacher@active-4.com> | 2011-12-05 22:38:43 -0500 |
commit | 803d20968fea1e25a298aa3b4e670d5670995e0d (patch) | |
tree | 2f90c6b8403e85576d0109a672dccb46598ce115 /README | |
download | stackbin-803d20968fea1e25a298aa3b4e670d5670995e0d.tar.gz stackbin-803d20968fea1e25a298aa3b4e670d5670995e0d.tar.bz2 stackbin-803d20968fea1e25a298aa3b4e670d5670995e0d.zip |
Added as example app
Diffstat (limited to 'README')
-rw-r--r-- | README | 27 |
1 files changed, 27 insertions, 0 deletions
@@ -0,0 +1,27 @@ + + // Flask-Pastebin // + + This application implements an example pastebin with Flask, + Flask-OAuth, Flask-SQLAlchemy, Flask-Script, as well as + Juggernaut to show off some realtime things. + + What can it do? + + * Facebook Connect + * Realtime push notifications with Juggernaut + * Shows simple pagination + + How to use it? + + 1. make a virtualenv + 2. ``pip install -r requirements.rst`` + 3. ``python manage.py initdb`` + 4. ``python manage.py runserver`` + + Also make sure to run juggernaut. + + How to install juggernaut? + + $ npm install -g juggernaut + + |