https://github.com/amitness/crimecontrol
Track crime happening in city in real time
https://github.com/amitness/crimecontrol
crime hackathon realtime tracking
Last synced: about 1 month ago
JSON representation
Track crime happening in city in real time
- Host: GitHub
- URL: https://github.com/amitness/crimecontrol
- Owner: amitness
- License: gpl-3.0
- Created: 2017-01-20T12:47:18.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-23T12:58:48.000Z (over 7 years ago)
- Last Synced: 2025-03-23T23:27:03.683Z (about 2 months ago)
- Topics: crime, hackathon, realtime, tracking
- Language: JavaScript
- Homepage: http://crimecontrol.herokuapp.com/
- Size: 163 KB
- Stars: 2
- Watchers: 1
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# crime-tracker

A web app that tracks crime happening in city in real time.
### Backstory
Developed during 40 hour Leapfrog Hackathon at [KU IT Meet 2017](https://www.facebook.com/events/147957639029217/).Slides for the presentation can be viewed [here](slides.pdf).
### Built With
* [Python](https://www.python.org/)
* [Flask](http://flask.pocoo.org/)
* [Google Maps API](https://developers.google.com/maps/)### Local Development
To install these interactives on your local machine:
* Clone this repository to your local machine.
* In the directory where you placed the cloned repo, create a virtual environment for Python and project dependencies in a directory called "venv":
```shell
pip install virtualenv
virtualenv venv
```
* Activate your virtual environment
```shell
source venv/bin/activate
```
* Install Flask and all required packages:
```shell
pip install -r requirements.txt
```* Fire up your local webserver:
```shell
python app.py
```
* In a web browser, go to [localhost:5000](http://localhost:5000/), and you should see the development site! Please not that the terminal window you are running the development site in must stay open while you are using the site.
* When daily development is complete, terminate the local web server by typing ```CONTROL + C```. Also deactivate the virtual environment:
```shell
deactivate
```### Authors
- [Amit Chaudhary](https://github.com/amitness)
- [Enosh Shrestha](https://github.com/eroj333)
- [Kamal Paneru](https://github.com/Kamalpaneru)### License
This project is licensed under the GNU License - see the [LICENSE](LICENSE) file for details