alexsigaras / YelpMark

Final Project for COMS 4170 - User Interface Design @ Columbia University 2012

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

YelpMark

A web Application enabling people to tag and save businesses discovered through Yelp.

What is YelpMark?

YelpMark is a Yelp bookmark enhancing web application that enables users to tag and save businesses discovered through the Yelp API. Users are able to see ratings, reviews, business information, and retrieve driving directions to the business. With YelpMark users can search via voice or simple text input. Yelpmark supports geolocation, helping users find local results faster. Users can filter both bookmarks and search results by rating, user defined tag, and category.

Documentation

Running YelpMark using docker

Template

docker run -d --name yelpmark \
--restart=always \
-p {PORT}:80 \
-v '{PATH/TO/public-html}':/usr/local/apache2/htdocs/ \
httpd:2.4.27

Where:

  • {PATH/TO/public-html}: The location where public-html files are stored.
  • {PORT}: The external port you want to expose YelpMark.

Example

docker run -d --name yelpmark \
--restart=always \
-p 3000:80 \
-v ${PWD}/public-html:/usr/local/apache2/htdocs/ \
httpd:2.4.27

About

Final Project for COMS 4170 - User Interface Design @ Columbia University 2012

License:MIT License


Languages

Language:JavaScript 81.8%Language:HTML 14.8%Language:CSS 3.4%