Skip to content

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

License

Notifications You must be signed in to change notification settings

alexsigaras/YelpMark

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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