cli/cmd/core-gui/Taskfile.yml
Snider 9ef000853e feat: add lthn-desktop as default GUI and restructure build targets
- Set lthn-desktop as the default gui build target (port 9247)
- Add core-demo GUI with Vite frontend (port 9245)
- Configure core-gui on port 9246 to avoid conflicts
- Update .gitignore for lthn-desktop and core-demo artifacts
- Include lthn-desktop Angular frontend with Monaco editor and Claude panel
- Add frontend.old directory preserving original lthn-desktop pages

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-21 14:40:33 +00:00

42 lines
994 B
YAML

version: '3'
includes:
common: "./build/Taskfile.yml"
windows: "./build/windows/Taskfile.yml"
darwin: "./build/darwin/Taskfile.yml"
linux: "./build/linux/Taskfile.yml"
vars:
APP_NAME: "core-gui"
BIN_DIR: "./build/bin"
VITE_PORT: '{{.WAILS_VITE_PORT | default 9246}}'
tasks:
build:
summary: Builds the application
cmds:
- task: "{{OS}}:build"
package:
summary: Packages a production build of the application
cmds:
- task: "{{OS}}:package"
run:
summary: Runs the application
cmds:
- task: "{{OS}}:run"
# This is the main dev task called by the Makefile.
# It delegates to the actual wails command below.
dev:
summary: Runs the application in development mode
cmds:
- task: dev:wails
# This task contains the real wails dev command.
# This avoids the recursive loop and provides a clear target.
dev:wails:
internal: true
cmds:
- wails3 dev -config ./build/config.yml -port {{.VITE_PORT}}