- Migrate to packages/web + packages/desktop workspace layout via git mv - Add Tauri v2 desktop shell with @tauri-apps/plugin-http for CORS bypass - Configure Turborepo with package-level dependsOn build graph - Add semantic-release with exec plugin for GHA output and disabled PR comments - Fix http:default capability scope to allow all HTTP/HTTPS origins - Add Vite Tauri integration (clearScreen, TAURI_DEV_HOST, target, envPrefix) - Add semantic-release.yml and release.yml GitHub Actions workflows - Fix all Biome lint errors (noArrayIndexKey, noNonNullAssertion, button types)
36 lines
730 B
JSON
36 lines
730 B
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2.json",
|
|
"productName": "OpenConcho",
|
|
"identifier": "com.offendingcommit.openconcho",
|
|
"build": {
|
|
"frontendDist": "../../web/dist",
|
|
"devUrl": "http://localhost:5173",
|
|
"beforeDevCommand": "pnpm --filter @openconcho/web dev"
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all",
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
]
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "OpenConcho",
|
|
"width": 1280,
|
|
"height": 800,
|
|
"minWidth": 800,
|
|
"minHeight": 600
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
}
|
|
}
|