From 0f0c843602126fe0b8ab8243d036253e199f5b75 Mon Sep 17 00:00:00 2001 From: hanemile Date: Sun, 19 Jul 2020 13:16:37 +0200 Subject: config now defaults to docker setup --- config.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 config.yml (limited to 'config.yml') diff --git a/config.yml b/config.yml new file mode 100644 index 0000000..ba730a0 --- /dev/null +++ b/config.yml @@ -0,0 +1,22 @@ +# logging verbosity leve (1-7) 1=panic, 7=trace +verbose: + level: 6 + +# Host information (ip to bind to and port to listen on) +server: + host: "0.0.0.0" + port: "8085" + +# The database that should be accessed +db: + addr: "postgres:5432" + user: "postgres" + password: "postgres" + database: "postgres" + +# Enable the http frontend +frontend: true + +# the path at which the uploaded slides are stored +# (trailing slash expected) +uploadpath: "./uploads/" \ No newline at end of file -- cgit 1.4.1