An open API service indexing awesome lists of open source software.

https://github.com/alexsigaras/yelpmark

Final Project for COMS 4170 - User Interface Design @ Columbia University 2012
https://github.com/alexsigaras/yelpmark

columbia css html javascript yelp-api

Last synced: about 1 month ago
JSON representation

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

Awesome Lists containing this project

README

        

# 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.

![](docs/images/yelpmark.png)

## Documentation

- [Proposed Design Concept](docs/Proposed%20Design%20Concept.pdf)
- [User Scenario Video](https://youtu.be/T5NMnk89QlM)
- [YelpMark Development](docs/YelpMark%20Development%20Updated.pdf)
- [YelpMark User Manual](docs/YelpMark%20User%20Manual.pdf)

## Designs

![](docs/images/2012-11-27%2017.18.05.jpg)
![](docs/images/2012-11-27%2017.18.08.jpg)
![](docs/images/2012-11-27%2017.18.29.jpg)
![](docs/images/2012-11-27%2017.18.31.jpg)

## Running YelpMark using docker

### Template

```bash
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

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