diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/network.json | 4 | ||||
-rw-r--r-- | config/product.json | 4 | ||||
-rw-r--r-- | config/updates.json | 16 |
3 files changed, 24 insertions, 0 deletions
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 +} |