https://github.com/smacker/hercules-web
web ui for hercules
https://github.com/smacker/hercules-web
Last synced: about 1 year ago
JSON representation
web ui for hercules
- Host: GitHub
- URL: https://github.com/smacker/hercules-web
- Owner: smacker
- Created: 2017-12-18T14:45:51.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-03-18T18:02:01.000Z (over 7 years ago)
- Last Synced: 2025-03-30T14:24:00.538Z (about 1 year ago)
- Language: Vue
- Homepage:
- Size: 940 KB
- Stars: 7
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hercules-web
> web ui for [hercules](https://github.com/src-d/hercules)

## Run
```
docker run --rm -p 8080:8080 smacker/hercules-web
```
Open http://localhost:8080
## Development
### Frontend:
```bash
# install dependencies
yarn
# serve with hot reload at localhost:8081
yarn serve
# build dist files
yarn build
```
### Backend:
```bash
# install all deps (there are many of them, look at Dockerfile)
...
# server at localhost:8080
go run *.go
```