From c8a8cfe15cc55c3d6bc04970529eeba45dd4a8db Mon Sep 17 00:00:00 2001 From: Christoph Gutmann Date: Thu, 23 May 2024 21:05:05 +0200 Subject: [PATCH] add config --- publisher/config.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 publisher/config.sh diff --git a/publisher/config.sh b/publisher/config.sh new file mode 100644 index 0000000..886ce87 --- /dev/null +++ b/publisher/config.sh @@ -0,0 +1,16 @@ +typeset -A config +config=( + [gitrepo]="https://github.com/nnamtug/rdf-autopublishing" + [graphdb]="http://localhost:7200" + [modelpath]="model" + [repo_prod]="prod" + [repo_staging]="staging" + [graph_prod]="http://example.org/autoupload" +) + +typeset -A config_modelfolders +config_modelfolders=( + [0]="." + [1]="things" + [2]="things/persons" +)