Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rasmi/civic-graph
Civic Graph - Visualization Tool
https://github.com/rasmi/civic-graph
Last synced: about 1 month ago
JSON representation
Civic Graph - Visualization Tool
- Host: GitHub
- URL: https://github.com/rasmi/civic-graph
- Owner: rasmi
- Created: 2015-05-19T22:45:52.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-05-10T22:36:27.000Z (over 8 years ago)
- Last Synced: 2024-04-23T22:23:27.453Z (9 months ago)
- Language: JavaScript
- Homepage: http://civicgraph.io
- Size: 18.1 MB
- Stars: 5
- Watchers: 7
- Forks: 5
- Open Issues: 31
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Civic Graph
## Development
To set up your development environment, you need `pip` (included with `Python>=2.7.9`).If you don't have it already, install `virtualenv`:
```
pip install virtualenv
```
Then, create a virtual environment in the civic-graph folder:
```
virtualenv civicenv
```
Activate the virtual environment with:
```
.\civicenv\Scripts\activate # (Windows)
source civicenv/bin/activate # (Mac/Linux)
```
Then you can install the required packages with:
```
pip install -r requirements.txt
```
Finally, you can run the application on `http://localhost:5000`:
```
python run.py
```