WT Platform
My Management System
Projects
| Project | Description | Port |
|---|---|---|
| WT-ec | Frontend EC (Nuxt 4) | 3010 |
| WT-be | Backend API (NestJS 11) | 8080 |
Scripts
| Script | Command |
|---|---|
dev | concurrently -n ec,be,info -c blue,yellow,cyan "cd WT-ec && yarn dev" "cd WT-be && yarn dev" "sleep 5 && echo '' && echo ' All services started:' && echo ' WT-ec -> http://localhost:3010' && echo ' WT-be -> http://localhost:8080' && echo ''" |
dev:split | bash scripts/dev-tmux.sh |
dev:ec | cd WT-ec && yarn dev |
dev:be | cd WT-be && yarn dev |
commit | bash scripts/commit-all.sh |
push:all | bash scripts/push-only-all.sh |
push | bash scripts/push-all.sh |
docs:gen | node scripts/generate-docs.mjs |
docs:sync | node scripts/sync-docs.mjs |
docs:dev | node scripts/sync-docs.mjs && vitepress dev docs |
docs:build | node scripts/sync-docs.mjs && vitepress build docs |
docs:preview | vitepress preview docs |
docs:deploy | bash scripts/deploy-docs.sh |
Quick Start
bash
bash scripts/setup.sh
yarn dev