mirror of
https://github.com/jamiepine/voicebox.git
synced 2026-09-16 13:20:39 -07:00
- Renamed backend development script from `dev:backend` to `dev:server` for clarity. - Added new macOS icon assets and configuration files for the application. - Enhanced App component to improve server management during production and development modes. - Updated ConnectionForm to reset state after successful submission and conditionally render the update button. - Implemented database initialization on application startup in the backend.
59 lines
1.1 KiB
JSON
59 lines
1.1 KiB
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "voicebox",
|
|
"version": "0.1.0",
|
|
"identifier": "sh.voicebox.app",
|
|
"build": {
|
|
"beforeDevCommand": "bun run dev",
|
|
"beforeBuildCommand": "bun run build",
|
|
"frontendDist": "../dist",
|
|
"devUrl": "http://localhost:5173"
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all",
|
|
"externalBin": [
|
|
"binaries/voicebox-server"
|
|
],
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/[email protected]",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
],
|
|
"macOS": {
|
|
"frameworks": [],
|
|
"minimumSystemVersion": "11.0",
|
|
"infoPlist": "Info.plist"
|
|
},
|
|
"resources": [
|
|
"gen/**/*"
|
|
]
|
|
},
|
|
"app": {
|
|
"security": {
|
|
"csp": null,
|
|
"capabilities": ["default"]
|
|
},
|
|
"windows": [
|
|
{
|
|
"title": "voicebox",
|
|
"width": 1200,
|
|
"height": 800,
|
|
"minWidth": 800,
|
|
"minHeight": 600,
|
|
"resizable": true,
|
|
"fullscreen": false,
|
|
"devtools": true
|
|
}
|
|
],
|
|
"withGlobalTauri": true
|
|
},
|
|
"plugins": {
|
|
"shell": {
|
|
"open": true
|
|
}
|
|
}
|
|
}
|