You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
3 years ago | |
---|---|---|
pkg/logparser | 3 years ago | |
templates | 5 years ago | |
Dockerfile | 5 years ago | |
README.md | 5 years ago | |
go.mod | 5 years ago | |
main.go | 5 years ago |
README.md
NetHack High Scores
This is simple go app that renders NetHack high scores and serves them via a Golang based web server.
You can view it live at nethack.jerryaldrichiii.com
Running
Locally:
go run main.go /path/to/nethack/logfile
Docker:
docker build . -t yourorigin/nethack-high-scores:latest
docker run -it --rm \
-v /path/to/nethack/logfile:/nethack/logfile \
-p 8080:8080 \
yourorigin/nethack-high-scores:latest