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
- Host: GitHub
- URL: https://github.com/banool/gomogo
- Owner: banool
- Created: 2017-12-04T23:45:41.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-08-15T23:21:35.000Z (almost 5 years ago)
- Last Synced: 2025-03-14T23:43:23.588Z (over 1 year ago)
- Language: CSS
- Homepage: https://gomogo.dport.me
- Size: 22 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```