1
0
mirror of https://github.com/spacebarchat/client.git synced 2024-11-22 18:32:34 +01:00
client/src-tauri/tauri.conf.json
2023-09-15 13:32:55 -04:00

57 lines
1.3 KiB
JSON

{
"build": {
"beforeDevCommand": "pnpm run dev",
"beforeBuildCommand": "pnpm run build",
"devPath": "http://localhost:1420",
"distDir": "../build",
"withGlobalTauri": false
},
"package": {
"productName": "Spacebar",
"version": "../package.json"
},
"tauri": {
"bundle": {
"active": true,
"targets": "all",
"identifier": "chat.spacebar.app",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"publisher": "Spacebar",
"category": "SocialNetworking",
"shortDescription": "A free, opensource self-hostable discord-compatible chat, voice and video platform.",
"windows": {
"nsis": {
"license": "../LICENSE",
"sidebarImage": "./icons/sidebar.bmp",
"installerIcon": "./icons/icon.ico"
}
},
"updater": {
"active": false,
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDQxRkQwNTY1NzBEOTMyMTUKUldRVk10bHdaUVg5UWVoVm9JeDg4UEs1TkpMT3FKdzc3Y29CN2NZNk9vRE9sanJCUERqT09HVVYK",
"windows": {
"installMode": "passive"
}
}
},
"security": {
"csp": null
},
"windows": []
},
"plugins": {
"shell": {
"open": true
},
"updater": {
"endpoints": ["https://update.spacebar.chat/updates/{{target}}/{{arch}}"]
}
}
}