feat(core): Added core startup and debugging features

- Introduced the tauri-plugin-os, tauri-plugin-shell, and tauri-plugin-process plugins
- Added the coreStart function to execute shell commands to start the core
- Added the coreLog page and MainConsole component for debugging output
- Introduced vue-web-terminal to implement a terminal interface
- Removed the old Exe and Group modules and related code
This commit is contained in:
2025-10-24 09:36:10 +08:00
parent 462f70f35d
commit e4f67f0f76
20 changed files with 179 additions and 163 deletions

View File

@@ -11,6 +11,9 @@
"sql:default",
"sql:allow-execute",
"fs:default",
"os:default",
"shell:default",
"process:default",
{
"identifier": "fs:allow-write-text-file",
"allow": [
@@ -26,6 +29,28 @@
"path": "$APPCONFIG/*"
}
]
},
{
"identifier": "fs:allow-exists",
"allow": [
{
"path": "$APPCONFIG/*"
}
]
},
{
"identifier": "shell:allow-execute",
"allow": [
{
"name": "exec-sh",
"cmd": "sh",
"args": [
"-c",
"echo 'Hello World!'"
],
"sidecar": false
}
]
}
]
}