https://github.com/mdb/phl-pac-complaint-browser
Map and browse the 2009 - 2012 citizen complaints logged with the Philadelphia Police Advisory Commission against Philadelphia police officers.
https://github.com/mdb/phl-pac-complaint-browser
Last synced: 11 months ago
JSON representation
Map and browse the 2009 - 2012 citizen complaints logged with the Philadelphia Police Advisory Commission against Philadelphia police officers.
- Host: GitHub
- URL: https://github.com/mdb/phl-pac-complaint-browser
- Owner: mdb
- Created: 2013-04-27T15:32:01.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2014-12-06T19:02:36.000Z (over 11 years ago)
- Last Synced: 2025-01-14T16:36:14.921Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 522 KB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# phl-pac-complaint-browser
A Polymer-based `` custom element mapping 2009-2012 Philadelphia Police Advisory Commission complaints filed by citizens against Philadelphia Police officers.
# Local dev
Install Node.js dependencies:
```
npm install
```
Install bower dependencies:
```
bower install
```
Run local server:
```
gulp connect
```
View the demo in your web browser at `http://localhost:8080/demo.html`
# Building
`phl-pac-complaint-browser` uses vulcanize to concatenate and compress source files
to a single `build/index.html` document.
```
gulp build
```
# Deploying
`phl-pac-complaint-browser`'s demo compiles to a single `index.html` document
that can be deployed to any web server.
`phl-pac-complaint-browser` offers out-of-the-box command line S3 deployment.
Add an `aws.json` file citing your AWS info:
```
{
"key": "your key",
"secret": "your secret",
"bucket": "your S3 bucket",
"region": "us-east-1"
}
```
To deploy a build:
```
gulp deploy
```