From ba43f67215cd86b89a7b9981cdb6db4d2ebd4ed5 Mon Sep 17 00:00:00 2001 From: sayhiben Date: Tue, 8 Jul 2025 13:31:00 -0700 Subject: [PATCH] add default development config --- config.development.toml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 config.development.toml diff --git a/config.development.toml b/config.development.toml new file mode 100644 index 0000000..e8d33a9 --- /dev/null +++ b/config.development.toml @@ -0,0 +1,26 @@ +# Streamwall Development Configuration +# This configuration is optimized for local development with StreamSource + +[window] +# Development window size +width = 1280 +height = 720 + +[grid] +count = 4 + +[control] +# Local control server +address = "http://localhost:8080" +username = "dev" +password = "development" + +[data] +# Automatically fetch streams from StreamSource API +json-url = ["http://localhost:3000/api/v1/streams"] + +# Refresh every 10 seconds in development (more frequent than production) +interval = 10 + +# Optionally load from local file for testing +#toml-file = ["./example.streams.toml"] \ No newline at end of file