A web app that recommends and plans date ideas
- You need to have API keys from a couple of services viz. Trello, Yelp, MapQuest, OpenWeatherMap (all are free with limit restrictions)
- Create a .env file with the following content:
VUE_APP_TRELLO_API_KEY=<YOUR_TRELLO_API_KEY>
VUE_APP_TRELLO_TOKEN=<YOUR_TRELLO_TOKEN>
VUE_APP_YELP_CLIENT_ID=<YOUR_YELP_CLIENT_ID>
VUE_APP_YELP_API_KEY=<YOUR_YELP_API_KEY>
VUE_APP_MAPQUEST_API_KEY=<YOUR_MAPQUEST_API_KEY>
VUE_APP_OPENWEATHERMAP_API_KEY=<YOUR_OPENWEATHERMAP_API_KEY>
- Install Node.js and npm
- Install Vue CLI - https://cli.vuejs.org/guide/installation.html
- Clone the repo.
- Navigate inside date-recommender folder.
- Run
npm install
- Run
npm run serve