From 803d20968fea1e25a298aa3b4e670d5670995e0d Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Mon, 5 Dec 2011 22:38:43 -0500 Subject: Added as example app --- README | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 README (limited to 'README') diff --git a/README b/README new file mode 100644 index 0000000..f5859c0 --- /dev/null +++ b/README @@ -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 + + -- cgit