An open API service indexing awesome lists of open source software.

https://github.com/billstclair/agog

AGOG, A Game of Golems, was designed by Christopher St. Clair
https://github.com/billstclair/agog

Last synced: about 2 months ago
JSON representation

AGOG, A Game of Golems, was designed by Christopher St. Clair

Awesome Lists containing this project

README

          

# AGOG: A Game of Golems

AGOG is a two-player board game designed by Christopher St. Clair.

Rules are in [agog-rules.pdf](https://raw.githubusercontent.com/billstclair/agog/main/site/agog-rules.pdf).

## Elm Reactor

The non-networked simulator may be run in Elm Reactor:

```
cd .../agog
elm reactor
```

In another shell, compile the source into `site/elm.js`:

```
cd .../agog
bin/build
```

Then aim your browser at https://localhost:8000/site/index.html

## elm-test

If you install `elm-test`, you can test the JSON encoding/decoding.

Once:

```
cd .../agog
npm install elm-test
```

Test the JSON encoding/decoding:

```
cd .../agog
elm-test
```