We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The HTML frontend runs a web server on http://localhost:8080. Load this in your browser of choice and you will see the application running.
You can make changes to frontend/html/index.html, then just refresh your browser.
Run go run main.go from the frontend/html directory to start the web server.
go run main.go
frontend/html
The first thing go does when running main.go is it looks for a func main. main() then calls t.loop, which starts the http server.
go
main.go
func main
main()
We by default have a very loud log configuration turned on. To minimize it you can set the log level to DEBUG instead of FINEST
DEBUG
FINEST