From 9e9467442cc04355a288e1b6e0c120267061f792 Mon Sep 17 00:00:00 2001 From: Alexander Renz Date: Sun, 24 Aug 2025 13:35:12 +0000 Subject: [PATCH] Add initial test configuration file for server, security, and logging settings --- test-simple.toml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 test-simple.toml diff --git a/test-simple.toml b/test-simple.toml new file mode 100644 index 0000000..826489a --- /dev/null +++ b/test-simple.toml @@ -0,0 +1,10 @@ +# Simple test configuration +[server] +listen_address = "8080" +storage_path = "./test-uploads" + +[security] +secret = "test-secret-key" + +[logging] +level = "info"