aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorPeter <peterhsaxton@gmail.com>2020-07-30 08:56:36 +0100
committerPeter <peterhsaxton@gmail.com>2020-07-30 08:56:36 +0100
commitff8b71ddca3b4fb98b2c4f0524d34baad1df02ef (patch)
tree557dbfe2d027640cf8eaeddb4011433812cf1dbf /README.md
downloadgleam_json-ff8b71ddca3b4fb98b2c4f0524d34baad1df02ef.tar.gz
gleam_json-ff8b71ddca3b4fb98b2c4f0524d34baad1df02ef.zip
initial commit
Diffstat (limited to 'README.md')
-rw-r--r--README.md29
1 files changed, 29 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..98ed818
--- /dev/null
+++ b/README.md
@@ -0,0 +1,29 @@
+# gleam_json
+
+A Gleam program
+
+
+## Quick start
+
+```sh
+# Build the project
+rebar3 compile
+
+# Run the eunit tests
+rebar3 eunit
+
+# Run the Erlang REPL
+rebar3 shell
+```
+
+
+## Installation
+
+If [available in Hex](https://www.rebar3.org/docs/dependencies#section-declaring-dependencies)
+this package can be installed by adding `gleam_json` to your `rebar.config` dependencies:
+
+```erlang
+{deps, [
+ gleam_json
+]}.
+```