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.
21 lines
408 B
21 lines
408 B
# Maze Rats Generator
|
|
|
|
Use this to generate Maze Rats things (see `mrg -h`).
|
|
|
|
You can also run `mrg server` to create a web server with a REST API.
|
|
|
|
Docs can be viewed at [http://localhost:8080](http://localhost:8080).
|
|
|
|
## Building
|
|
|
|
Run `make build` then copy `build/dist/` to where you want to execute.
|
|
|
|
## Docker
|
|
|
|
```
|
|
docker build . -t yourorigin/mazerats:latest
|
|
|
|
docker run --rm -it \
|
|
-p 8080:8080
|
|
-
|
|
|
|
|