# 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](nethack.jerryaldrichiii.com) ## Running Locally: ```text go run main.go /path/to/nethack/logfile ``` Docker: ```text 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 ```