From 0f79e708bf07721b73ea41e5d341be08e8ea4dce Mon Sep 17 00:00:00 2001 From: Minteck Date: Sun, 7 Mar 2021 18:29:17 +0100 Subject: Initial commit --- config/network.json | 4 ++++ config/product.json | 4 ++++ config/updates.json | 16 ++++++++++++++++ 3 files changed, 24 insertions(+) create mode 100644 config/network.json create mode 100644 config/product.json create mode 100644 config/updates.json (limited to 'config') diff --git a/config/network.json b/config/network.json new file mode 100644 index 0000000..01107fe --- /dev/null +++ b/config/network.json @@ -0,0 +1,4 @@ +{ + "port": "8888", + "admin": "[no address given]" +} \ No newline at end of file diff --git a/config/product.json b/config/product.json new file mode 100644 index 0000000..b6ae982 --- /dev/null +++ b/config/product.json @@ -0,0 +1,4 @@ +{ + "name": "FNS Electrode", + "common": "Electrode" +} \ No newline at end of file diff --git a/config/updates.json b/config/updates.json new file mode 100644 index 0000000..c0405ab --- /dev/null +++ b/config/updates.json @@ -0,0 +1,16 @@ +{ + "check": { + "host": "raw.githubusercontent.com", + "port": 443, + "ssl": true, + "path": "/Minteck-Projects/Neutron-Core/trunk/api/version", + "compareWith": "./public/api/version" + }, + "update": { + "host": "github.com", + "port": 443, + "ssl": true, + "path": "/Minteck-Projects/Neutron-Core/archive/trunk.tar.gz" + }, + "interval": 3600000 +} -- cgit