diff options
author | xengineering <me@xengineering.eu> | 2024-03-24 11:30:56 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-03-24 11:30:56 +0100 |
commit | 3a169c74caa79a01b319786ac6c5ff8947686a59 (patch) | |
tree | c1bfe30bcd4ec83eccb8b9adc522a46cfcbd2f53 | |
parent | bc1a0ba75311ea2d53f2cbd3e305b31a561fdafc (diff) | |
download | webiot-3a169c74caa79a01b319786ac6c5ff8947686a59.tar webiot-3a169c74caa79a01b319786ac6c5ff8947686a59.tar.zst webiot-3a169c74caa79a01b319786ac6c5ff8947686a59.zip |
Provide example and default configuration
Those two configuration files should not be the same. The default
configuration should be more or less empty while the example
configuration should demonstrate the server's capabilities.
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | config/default.json | 8 | ||||
-rw-r--r-- | config/example.json (renamed from config.json) | 0 |
3 files changed, 10 insertions, 2 deletions
@@ -15,9 +15,9 @@ clean: install: all install -Dm 755 build/$(PROGRAM) $(DESTDIR)$(PREFIX)/bin/$(PROGRAM) - install -Dm 644 config.json $(DESTDIR)/etc/$(PROGRAM)/config.json + install -Dm 644 config/default.json $(DESTDIR)/etc/$(PROGRAM)/config.json install -Dm 644 appdata/index.html.tmpl $(DESTDIR)$(PREFIX)/share/$(PROGRAM)/index.html.tmpl install -Dm 644 appdata/simple.css $(DESTDIR)$(PREFIX)/share/$(PROGRAM)/simple.css debug: - go run *.go -c config.json -a appdata + go run *.go -c config/example.json -a appdata diff --git a/config/default.json b/config/default.json new file mode 100644 index 0000000..17d64ef --- /dev/null +++ b/config/default.json @@ -0,0 +1,8 @@ +{ + "devices":{ + "hs100":[] + }, + "web":{ + "listen":"127.0.0.1:9000" + } +} diff --git a/config.json b/config/example.json index 9366364..9366364 100644 --- a/config.json +++ b/config/example.json |