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.
26 lines
518 B
26 lines
518 B
# 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
|
|
```
|
|
|