aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--README.md6
-rw-r--r--etc/sample.json8
3 files changed, 13 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index cd9b92c..1219888 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
*.go
/**/*~
+/tmp/*
diff --git a/README.md b/README.md
index 8c94ccd..06dc82d 100644
--- a/README.md
+++ b/README.md
@@ -28,12 +28,14 @@ $ make
or for a container
```shell
-mkdir test
+mkdir ./tmp
guix shell -C --network --share=/run/mysqld/ --manifest=manifest.scm
export GUILE_LOAD_PATH=.:$GUILE_LOAD_PATH
-guile json-dump.scm conn.scm test/
+guile json-dump.scm etc/sample.json tmp/
```
+That reads the `etc/sample.json` file included in this repository and converts it to an RDF representation that is stored in a file `./tmp/sampledata.ttl`.
+
## Set up connection parameters
diff --git a/etc/sample.json b/etc/sample.json
new file mode 100644
index 0000000..b32e24c
--- /dev/null
+++ b/etc/sample.json
@@ -0,0 +1,8 @@
+{
+ "metadata": {
+ "name": "some-metadata-item-name",
+ "displayName": "the-item-display-name",
+ "createdBy": "Frederick M. Muriithi"
+ "why": "to-demo-usage-of-system-and-for-documentation"
+ }
+}