https://github.com/mdb/phl-hood-reporter
Find out what Philly neighborhood you're in.
https://github.com/mdb/phl-hood-reporter
Last synced: 25 days ago
JSON representation
Find out what Philly neighborhood you're in.
- Host: GitHub
- URL: https://github.com/mdb/phl-hood-reporter
- Owner: mdb
- Created: 2013-09-27T21:34:34.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-11-30T17:59:16.000Z (over 12 years ago)
- Last Synced: 2025-12-06T07:23:31.402Z (6 months ago)
- Language: Ruby
- Size: 164 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Phl Hood Reporter
A dirt simple web application that reports what Philadelphia neighborhood you're in.
The app retrieves your geocoordinates and uses the [philly-hoods](https://github.com/davewalk/philly-hoods) API to determine what neighborhood you're currently in.
## Why?
Wow friends with an expert knowledge of the nebulous boundaries between Kensington and Port Richmond! Prove that Cedar Park is not Spruce Hill!
## Demo
[Check it out in action!](http://bit.ly/19dtPA1)
## Install, Develop, Build & Deploy
1. Install [bundler](http://bundler.io/), [Node.js](http://nodejs.org/), and [bower](http://bower.io/)
2. Clone phl-hood-reporter and install its dependencies:
```
git clone https://github.com/mdb/phl-hood-reporter.git
cd phl-hood-reporter
bundle install
bower install
```
3. Run the development server to access the app at localhost:4567
```
middleman server
```
4. Compile the app to static HTML, CSS, and JavaScript files
```
rake build
```
5. Deploy to Amazon S3
```
rake deploy
```