-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathneutralino.config.json
58 lines (58 loc) · 1.42 KB
/
neutralino.config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"$schema": "https://raw.githubusercontent.com/neutralinojs/neutralinojs/main/schemas/neutralino.config.schema.json",
"applicationId": "js.neutralino.five9cyber.template",
"version": "1.0.0",
"defaultMode": "window",
"documentRoot": "/app/dist/",
"url": "/",
"enableServer": true,
"enableNativeAPI": true,
"singlePageServe": true,
"tokenSecurity": "one-time",
"nativeAllowList": [
"app.*",
"os.*",
"filesystem.*",
"window.*",
"storage.*",
"debug.log"
],
"logging": {
"enabled": true,
"writeToLogFile": true
},
"modes": {
"window": {
"title": "Five9 Cyber Template",
"width": 1000,
"height": 800,
"minWidth": 800,
"minHeight": 600,
"center": true,
"fullScreen": false,
"alwaysOnTop": false,
"icon": "/app/public/neutralino.png",
"enableInspector": true,
"borderless": false,
"maximize": false,
"hidden": false,
"resizable": true,
"exitProcessOnClose": false
}
},
"cli": {
"binaryName": "application",
"resourcesPath": "/app/dist/",
"extensionsPath": "/extensions/",
"binaryVersion": "5.4.0",
"clientVersion": "5.4.0",
"frontendLibrary": {
"projectPath": "/app/",
"patchFile": "/app/index.html",
"devUrl": "http://localhost:5173",
"buildCommand": "npm run build",
"initCommand": "npm install",
"devCommand": "npm run dev"
}
}
}