ClimbsRocks / jaunt

A curated walking tour, led by neighborhood locals, that you can take at your own time and pace

Home Page:http://gojaunt.co

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Jaunt

Jaunt

Jaunt lets local explorers find walking adventures that fit their fancy.

Original Team

Legacy Team

Development

Jaunt server is built using express 4 and uses MongoDB. The client is a mobile-first web application built using Ionic. The project is deployed to Heroku.

Deployment

From within the root directory:

npm install
bower install

If you want to connect to the remote mongoDb, create a .env file with the proper environment variables. See DEPLOYMENT.md for more info. The server will connect to a local mongoDB server by default.

Build both the client and server files, and watch for changes, with:

gulp

For remote deployment to Heroku, see DEPLOYMENT.md.

API

Jaunt's API is an abstraction on top of Mongo's default query language that allows simpler query objects to be sent to the server to request jaunts. The API endpoints for querying and storing jaunts are, respectively:

GET  /api/jaunts/
POST /api/jaunts/

Jaunts consist of a route, stops along the way, and information about the Jaunt as a whole (like tags, geographic start and end points, and ratings).

Jaunts are represented as a fairly complex BSON object in MongoDB, with a great deal of indexing (including geospatial indexing of the Jaunt as a whole and its compnent stops. For detailed documentation and sample data, refer to SCHEMA.md.

To query the database for jaunts, simply pass a JSON query object with the desired query parameters to the GET /api/jaunts API endpoint. Here's an example:

$.ajax({
  url: "http://gojaunt.co/api/jaunts",
    type: "GET",
    data: {
      end_location: {
        coordinates: [-122.4025466, 37.7943864],
        range: 1500
      },
      tags : ['beer', 'pizza']
    }
    contentType: 'application/json'
});

For detailed information about querying the Jaunts database, refer to API.md.

Contributing

See CONTRIBUTING.md for contribution guidelines.

Product Wishlist

See Product Wishlist for our product backlog.

About

A curated walking tour, led by neighborhood locals, that you can take at your own time and pace

http://gojaunt.co


Languages

Language:JavaScript 85.0%Language:CSS 15.0%