From 92f2e0267323137941645426e90d75f214e1a590 Mon Sep 17 00:00:00 2001 From: stuebinm Date: Mon, 5 Apr 2021 00:58:49 +0200 Subject: add dhall example config --- example-config.dhall | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 example-config.dhall diff --git a/example-config.dhall b/example-config.dhall new file mode 100644 index 0000000..0b5d5ae --- /dev/null +++ b/example-config.dhall @@ -0,0 +1,20 @@ +{ title = "Test Survey" +, description = "This is a test survey." +, pubkey = Some "age1te673wg4decpplhwrtw2x8atglrn59t87q0tllx7n7uhnr7qrg0ss6f36g" +, questions = + [ { question = "first question", name = "question1", space = Answers.YesOrNo } + , { question = "second question" + , name = "question2" + , space = Answers.Freeform "test" + } + , { question = "third question" + , name = "question3" + , space = + Answers.Multiple + [ "first possible answer" + , "second possible answer" + , "third possible answer" + ] + } + ] +} -- cgit v1.2.3