aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJoris2020-01-28 09:55:58 +0100
committerJoris2020-01-29 10:12:31 +0100
commit1b6a7e0d00703e3da2e1620b5a2b2cba027161de (patch)
tree5143f784e1529d3b6c04116c84f09c426bb257b0 /README.md
parent197b6fa7aa810147d63209408c3a378ec552d0f4 (diff)
Implement game of life
Diffstat (limited to 'README.md')
-rw-r--r--README.md24
1 files changed, 24 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..e9517c3
--- /dev/null
+++ b/README.md
@@ -0,0 +1,24 @@
+# Game of life
+
+The code is written in Rust and is compiled to WebAssembly.
+[wasm-bindgen](https://github.com/rustwasm/wasm-bindgen) is used to interact
+with JavaScript.
+
+See [the wikipedia page](https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life)
+to get more information about game of life.
+
+## Live
+
+[https://guyonvarch.gitlab.io/game-of-life](https://guyonvarch.gitlab.io/game-of-life)
+
+## Getting started
+
+```bash
+nix-shell --run ./watch
+```
+
+## Deploy
+
+```bash
+nix-shell --run ./deploy
+```