From f7ef356e0fd9ac72a5730c3ba63128314dce78ed Mon Sep 17 00:00:00 2001 From: Michael Schuett Date: Thu, 1 Jul 2021 22:57:40 -0500 Subject: [PATCH] Update readme --- .gitignore | 1 + README.md | 10 +++++++++- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9c1af59 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/jsonnet-playground diff --git a/README.md b/README.md index 897b45c..6d589a7 100644 --- a/README.md +++ b/README.md @@ -34,5 +34,13 @@ following command. ``` $ docker run --net=host --name jsonnet --rm -e MYSQL_ROOT_PASSWORD=secret -e MYSQL_DATABASE=jsonnet -d mysql:5.7 -$ JSONNET_MYSQL_CONN="root:secret@tcp(127.0.0.1:3306)/jsonnet" ./compile -sql +$ JSONNET_MYSQL_CONN="root:secret@tcp(127.0.0.1:3306)/jsonnet" ./jsonnet-playground -sql +``` + +### Local Testing + +Build and run + +``` +./jsonnet-playground -in-memory ```