Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
parkpow
GitHub Repository: parkpow/deep-license-plate-recognition
Path: blob/master/gate-controller/src-tauri/tauri.conf.json
1080 views
1
{
2
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
3
"productName": "GateController",
4
"version": "1.0.0",
5
"identifier": "com.platerecognizer.gatecontroller",
6
"build": {
7
"frontendDist": "../out",
8
"devUrl": "http://localhost:3000",
9
"beforeDevCommand": "bun run dev",
10
"beforeBuildCommand": "bun run build"
11
},
12
"app": {
13
"windows": [
14
{
15
"title": "GateController",
16
"width": 800,
17
"height": 600,
18
"resizable": true,
19
"fullscreen": false
20
}
21
],
22
"security": {
23
"csp": null
24
}
25
},
26
"bundle": {
27
"active": true,
28
"targets": "all",
29
"icon": [
30
"icons/32x32.png",
31
"icons/128x128.png",
32
"icons/[email protected]",
33
"icons/icon.icns",
34
"icons/icon.ico"
35
],
36
"resources": ["usbrelay/usbrelay.exe"]
37
}
38
}
39
40