From d1d155210c1711705d4088a12d65f250747a4de7 Mon Sep 17 00:00:00 2001 From: Dragon Dave McKee Date: Sat, 14 Feb 2015 12:41:21 +0000 Subject: [PATCH] Make non-literal text in code more obvious. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 25081c0..dc09eb6 100644 --- a/README.md +++ b/README.md @@ -16,9 +16,9 @@ How To Use This --------------- 1. Navigate over to https://developer.uber.com/, and sign up for an Uber developer account. -2. Register a new Uber application and make your Redirect URI http://localhost:7000/submit - ensure that both the `profile` and `history` OAuth scopes are checked. +2. Register a new Uber application and make your Redirect URI `http://localhost:7000/submit` - ensure that both the `profile` and `history` OAuth scopes are checked. 3. Fill in the relevant information in the `config.json` file in the root folder and add your client id and secret as the environment variables `UBER_CLIENT_ID` and `UBER_CLIENT_SECRET`. -4. Run `export UBER_CLIENT_ID="YOUR_CLIENT_ID"&&export UBER_CLIENT_SECRET="YOUR_CLIENT_SECRET"` +4. Run `export UBER_CLIENT_ID="`*{your client id}*`"&&export UBER_CLIENT_SECRET="`*{your client secret}*`"` 5. Run `pip install -r requirements.txt` to install dependencies 6. Run `python app.py` 7. Navigate to http://localhost:7000 in your browser @@ -47,7 +47,7 @@ Click the button below to set up this sample app on Heroku: [![Deploy](https://www.herokucdn.com/deploy/button.png)](https://heroku.com/deploy) -After creating your app on Heroku, you have to configure the redirect URL for your Uber OAuth app. Use a `https://{my-app-name}.herokuapp.com/submit` URL. +After creating your app on Heroku, you have to configure the redirect URL for your Uber OAuth app. Use a `https://`*{your-app-name}*`.herokuapp.com/submit` URL. You will also want to configure the heroku environment variable FLASK_DEBUG=False in order to properly serve SSL traffic. Making Requests