From 9b0f9f155c988a92c1eb78cb68fd84c03d401c80 Mon Sep 17 00:00:00 2001 From: "Juan E. D." Date: Mon, 12 May 2014 18:56:21 -0300 Subject: [PATCH 1/2] Update README.md Sample app section bottle-session needs to be installed for the sample app to work. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index ae35a16a..321aff91 100644 --- a/README.md +++ b/README.md @@ -198,6 +198,7 @@ This repository includes a one-file sample app that uses the bottle framework an authentication, subscriptions, and update processing. To try it out: * Download bottle if you don't already have it: pip install bottle + * Download bottle-session if you don't already have it: pip install bottle-session * Set your redirect URI to 'http://localhost:8515/oauth_callback' in your dev profile * Open up sample\_app.py, update it with your client\_id and secret, and set redirect URI to 'http://localhost:8515/oauth_callback' * Run the file; it will host a local server on port 8515. From 8c2f06b680d4ea0bc749e7f69f3cc14031de85ad Mon Sep 17 00:00:00 2001 From: "Juan E. D." Date: Mon, 12 May 2014 19:11:02 -0300 Subject: [PATCH 2/2] Update README.md Sample app to include Redis An instance of redis is needed for bottles-session to work. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 321aff91..597d6976 100644 --- a/README.md +++ b/README.md @@ -199,6 +199,7 @@ authentication, subscriptions, and update processing. To try it out: * Download bottle if you don't already have it: pip install bottle * Download bottle-session if you don't already have it: pip install bottle-session + * Download and run a redis instance on port 6379 if you don't already have it. Check http://redis.io for instructions. * Set your redirect URI to 'http://localhost:8515/oauth_callback' in your dev profile * Open up sample\_app.py, update it with your client\_id and secret, and set redirect URI to 'http://localhost:8515/oauth_callback' * Run the file; it will host a local server on port 8515.