Skip to content

Latest commit

 

History

History
35 lines (22 loc) · 1.05 KB

README.md

File metadata and controls

35 lines (22 loc) · 1.05 KB

Orbiting Kittens

Orbiting Kittens Project Repo

Overview

Barcrawler enables users to input a start and end point to automatically build a bar crawl route with Instagram pictures from each stop.

Installation

To work on the source code, after cloning the repo you must npm install & bower install.

To start your local server run npm start.

API Reference

We utilized both Google Maps, Instagram, and Foursquare APIs. You can get API keys for each from:

You must create a config.js file within the instatrip folder and insert the below into it + your keys:

module.exports = {
  INSTAGRAM_ID: 'KEY',
  INSTAGRAM_SECRET: 'KEY',

  FOURSQUARE_ID: 'KEY',
  FOURSQUARE_SECRET: 'KEY',

  MAPS_KEY: 'KEY'
}