Files
openhuman/src-tauri/tauri.conf.json
T
Steven Enamakel 603dbcba85 feat: enhance build process and resource management
- Added a new build command in package.json for building the app with skills integration.
- Updated tauri.conf.json to use the new build command before building the app.
- Enhanced the RuntimeEngine to manage a resource directory for bundled skills in production, improving resource handling.
- Implemented logic to locate skills from various directories, including bundled resources, ensuring flexibility in both development and production environments.
2026-02-04 23:31:28 +05:30

53 lines
1.0 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "AlphaHuman",
"version": "0.1.0",
"identifier": "com.alphahuman.app",
"build": {
"beforeDevCommand": "npm run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "npm run build:app",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"label": "main",
"title": "AlphaHuman",
"width": 800,
"height": 720,
"visible": false,
"decorations": true,
"resizable": true,
"center": true
}
],
"security": {
"csp": null
},
"macOSPrivateApi": true
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"resources": ["../skills/skills"],
"macOS": {
"minimumSystemVersion": "10.15"
}
},
"plugins": {
"deep-link": {
"desktop": {
"schemes": ["alphahuman"]
}
}
}
}