An open API service indexing awesome lists of open source software.

https://github.com/banool/gomogo

1st place submission in our category at Govhack 2016
https://github.com/banool/gomogo

Last synced: about 1 year ago
JSON representation

1st place submission in our category at Govhack 2016

Awesome Lists containing this project

README

          

# Gomogo

## Developing
```
# Run the UI
nvm use 14.2.0
npm install
npm start

# Run the backend
cd data
pipenv --python 2.7
pipenv install
pipenv shell
python myserver.py
```

Now visit http://localhost:5000 and you should see the site.

Note: The form itself never contributed anything to the decision made at the end, and it seems like whatever the backend was doing is now broken (even the hardcoded postcode stuff), so the map doesn't show a particular point or display any useful information. You could get it working pretty easily if you wanted to.

## Deployment
```
docker build . -t gomogo
docker run -p 5000:5000 -p 5001:5001 -it gomogo --name gomogo
```