learndb/neutralino.config.json

81 wiersze
1.7 KiB
JSON

{
"applicationId": "org.learnawesome.learndb",
"version": "1.0.0",
"defaultMode": "window",
"port": 0,
"documentRoot": "/static/",
"url": "/",
"enableServer": true,
"enableNativeAPI": true,
"tokenSecurity": "one-time",
"logging": {
"enabled": true,
"writeToLogFile": true
},
"nativeAllowList": [
"app.*",
"os.*",
"debug.log"
],
"globalVariables": {
"TEST1": "Hello",
"TEST2": [
2,
4,
5
],
"TEST3": {
"value1": 10,
"value2": {}
}
},
"modes": {
"window": {
"title": "LearnDB",
"width": 1200,
"height": 800,
"minWidth": 800,
"minHeight": 500,
"fullScreen": false,
"alwaysOnTop": false,
"icon": "/static/icons/appIcon.png",
"enableInspector": true,
"borderless": false,
"maximize": false,
"hidden": false,
"resizable": true,
"exitProcessOnClose": false
},
"browser": {
"globalVariables": {
"TEST": "Test value browser"
},
"nativeBlockList": [
"filesystem.*"
]
},
"cloud": {
"url": "/resources/#cloud",
"nativeAllowList": [
"app.*"
]
},
"chrome": {
"width": 1200,
"height": 800,
"args": "--user-agent=\"Neutralinojs chrome mode\"",
"nativeBlockList": [
"filesystem.*",
"os.*"
]
}
},
"cli": {
"binaryName": "learndb",
"resourcesPath": "/static/",
"extensionsPath": "/extensions/",
"clientLibrary": "/static/neutralino.js",
"binaryVersion": "4.7.0",
"clientVersion": "3.6.0"
}
}