aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorLouis Pilfold <louis@lpil.uk>2024-01-18 18:28:35 +0000
committerLouis Pilfold <louis@lpil.uk>2024-01-18 18:28:35 +0000
commit451f7f0b0bbd8e1e187fb00d91dc829cc7347e8a (patch)
tree42f1110b3fda15b86c9e562abc5ddc6370e193a4 /README.md
parent3bfbe688f5a62e29835c7d3c4f282e7fff57949d (diff)
downloadtour-451f7f0b0bbd8e1e187fb00d91dc829cc7347e8a.tar.gz
tour-451f7f0b0bbd8e1e187fb00d91dc829cc7347e8a.zip
Use local compiler copy
Diffstat (limited to 'README.md')
-rw-r--r--README.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/README.md b/README.md
index ce1a26e..96b97dc 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,17 @@
# The Gleam Language Tour
An interactive tour of the Gleam programming language.
+
+```sh
+# Download a wasm version of the Gleam compiler
+rm -rf wasm-compiler
+mkdir wasm-compiler
+cd wasm-compiler
+curl -L "https://github.com/gleam-lang/gleam/releases/download/v0.34.1/gleam-v0.34.1-browser.tar.gz" | tar xz
+cd ..
+
+# Build the site
+gleam run
+
+# It's now all the in `public/` directory
+```