ssl-game-controller
The ssl-refbox replacement that will be introduced at RoboCup 2019
Usage
If you just want to use this app, simply download the latest release binary. The binary is self-contained. No dependencies are required.
Development
Requirements
You need to install following dependencies first:
Prepare
# download dependencies for backend
go get -v -d ./...
# download dependencies for frontend
npm install
Run
Run the backend:
go run cmd/ssl-game-controller/main.go
Run the UI:
# compile and hot-reload
npm run serve
Or use the provided IntelliJ run configurations.
Build self-containing release binary
First, build the UI resources
# compile and minify UI
npm run build
Then build the backend with packr
# get packr
go get github.com/gobuffalo/packr/packr
# install the binary
cd cmd/ssl-game-controller
packr install