-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathtauri.conf.json
More file actions
64 lines (64 loc) · 1.98 KB
/
tauri.conf.json
File metadata and controls
64 lines (64 loc) · 1.98 KB
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
59
60
61
62
63
64
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Dataflare",
"version": "3.0.5",
"identifier": "app.dataflare.desktop",
"build": {
"beforeDevCommand": "pnpm dev:web",
"beforeBuildCommand": "pnpm build:web",
"devUrl": "http://localhost:5173",
"frontendDist": "./dist/"
},
"bundle": {
"active": true,
"targets": ["app", "dmg", "appimage", "nsis"],
"category": "DeveloperTool",
"copyright": "Copyright © 2026 Dataflare.",
"shortDescription": "",
"longDescription": "",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"fileAssociations": [
{
"ext": ["db", "sqlite", "sqlite3"],
"mimeType": "application/x-sqlite3",
"name": "SQLite file",
"description": "SQLite file"
},
{
"ext": ["duckdb", "ddb"],
"mimeType": "application/x-duckdb",
"name": "DuckDB file",
"description": "DuckDB file"
}
],
"macOS": {
"providerShortName": null,
"signingIdentity": null,
"entitlements": "./entitlements.plist"
},
"windows": {
"digestAlgorithm": "sha256",
"nsis": {
"installerIcon": "icons/icon.ico"
}
},
"createUpdaterArtifacts": "v1Compatible"
},
"app": {
"security": {
"csp": null
}
},
"plugins": {
"updater": {
"endpoints": ["https://api.dataflare.app/release/{{target}}/{{arch}}/{{current_version}}"],
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEE5N0VCMjZFOTU4MzNEOTIKUldTU1BZT1ZickorcVFKNVNqQVlIcmJscnQ2Y1dTS3VhMU9uYnA3VVhIMXlWbFg2K2ZXWW5va1cK"
}
}
}