https://github.com/jonluca/uberorlyft
Compare the prices of Uber and Lyft from your browser!
https://github.com/jonluca/uberorlyft
lyft nodejs single-page-app uber
Last synced: 3 months ago
JSON representation
Compare the prices of Uber and Lyft from your browser!
- Host: GitHub
- URL: https://github.com/jonluca/uberorlyft
- Owner: jonluca
- License: mit
- Created: 2017-03-17T00:11:08.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-12-10T22:56:49.000Z (over 3 years ago)
- Last Synced: 2024-04-14T19:34:15.340Z (about 2 years ago)
- Topics: lyft, nodejs, single-page-app, uber
- Language: JavaScript
- Homepage:
- Size: 3.91 MB
- Stars: 15
- Watchers: 4
- Forks: 2
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# UberOrLyft
Want to know what's cheaper right this instant, Uber or Lyft? Check out UberOrLyft!
UberOrLyft shows you the full price difference between all possible products!

## Live Site
The deployed demo can be found [here](https://jonlu.ca/UberOrLyft/)
## Deploying locally
After cloning the repo, make sure to `npm install`, and to create a file called `config.js` with the following format:
```js
module.exports = {
client_id: 'uber_id',
client_secret: 'uber_secret',
server_token: 'server_token',
redirect_uri: 'http://localhost:3000',
lyft_one: 'lyft_id',
lyft_two: 'lyft_secret'
};
```