AeThex-OS/src-tauri/tauri.conf.json

59 lines
1.5 KiB
JSON

{
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
"productName": "AeThex OS",
"version": "1.0.0",
"identifier": "com.aethex.os",
"build": {
"frontendDist": "../dist/public",
"devUrl": "http://localhost:5000",
"beforeDevCommand": "npm run dev:client",
"beforeBuildCommand": "npm run build"
},
"app": {
"windows": [
{
"title": "AeThex Launcher",
"url": "launcher",
"width": 1200,
"height": 800,
"minWidth": 800,
"minHeight": 600,
"resizable": true,
"fullscreen": false,
"center": true,
"decorations": true,
"transparent": false
}
],
"security": {
"csp": null
},
"withGlobalTauri": true
},
"plugins": {
"updater": {
"active": true,
"endpoints": [
"https://releases.aethex.com/{{target}}/{{arch}}/{{current_version}}"
],
"dialog": true,
"pubkey": ""
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"publisher": "AeThex Corporation",
"copyright": "Copyright © 2025 AeThex Corporation",
"category": "Productivity",
"shortDescription": "AeThex Web Desktop Platform",
"longDescription": "A modular web desktop platform with authentication, project management, and extensible features."
}
}