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
- Host: GitHub
- URL: https://github.com/alexsigaras/yelpmark
- Owner: alexsigaras
- License: mit
- Created: 2013-07-27T22:12:56.000Z (almost 12 years ago)
- Default Branch: main
- Last Pushed: 2025-03-18T23:13:20.000Z (2 months ago)
- Last Synced: 2025-03-19T00:22:16.110Z (2 months ago)
- Topics: columbia, css, html, javascript, yelp-api
- Language: JavaScript
- Homepage:
- Size: 49 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.

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



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