34 lines
1.0 KiB
Batchfile
34 lines
1.0 KiB
Batchfile
@ECHO OFF
|
|
SETLOCAL ENABLEEXTENSIONS
|
|
|
|
REM ========================================================================
|
|
REM Aurora Admin Design System - DSH Startup Script
|
|
REM ========================================================================
|
|
REM This script launches the DeepSeek Harness for the Aurora Admin design
|
|
REM system project located on the desktop.
|
|
REM ========================================================================
|
|
|
|
REM Set the DSH tools path
|
|
SET "DSH_PATH=C:\Users\12914\AppData\Roaming\TRAE SOLO CN\ModularData\ai-agent\vm\tools\node"
|
|
|
|
REM Set the working directory to the workspace
|
|
SET "WORKSPACE=C:\Users\12914\Desktop\组件规范第一套"
|
|
|
|
REM Set DSH environment variables
|
|
SET "DSH_HOME=%APPDATA%\dsh"
|
|
SET "DSH_WORKSPACE=%WORKSPACE%"
|
|
|
|
REM Display info
|
|
ECHO Starting Aurora Admin Design System...
|
|
ECHO Workspace: %WORKSPACE%
|
|
ECHO DSH Path: %DSH_PATH%
|
|
ECHO Profile: Web
|
|
ECHO.
|
|
|
|
REM Change to workspace directory
|
|
cd /d "%WORKSPACE%"
|
|
|
|
REM Start DSH with web profile (opens in browser automatically)
|
|
"%DSH_PATH%\dsh.cmd" --profile web
|
|
|
|
ENDLOCAL |