bytelyst-devops-tools/dashboard/package.json
root fbaaa71a66 feat(devops): adopt trading web deployment model with docker-compose
- Add docker-compose.yml following trading web pattern
- Update web Dockerfile to use multi-stage build with metadata
- Add build metadata (commit SHA, branch, timestamp, author, message)
- Rewrite deploy.sh to use docker compose with build metadata
- Add hotcopy deployment script for quick updates
- Add comprehensive backend API with deployment orchestration
- Add health checks, service management, and monitoring endpoints
- Add CI/CD workflow configuration
- Add deployment documentation and guides

Generated with [Devin](https://cli.devin.ai/docs)

Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
2026-05-11 03:24:11 +00:00

19 lines
804 B
JSON

{
"name": "@bytelyst/devops-workspace",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.6.5",
"scripts": {
"dev": "pnpm --filter backend dev & pnpm --filter web dev",
"build": "pnpm --filter backend build && pnpm --filter web build",
"typecheck": "pnpm --filter backend typecheck && pnpm --filter web typecheck",
"test": "pnpm --filter backend test && pnpm --filter web test",
"test:run": "pnpm --filter backend test:run && pnpm --filter web test:run",
"test:e2e": "pnpm --filter web test:e2e",
"test:e2e:ui": "pnpm --filter web test:e2e:ui",
"secret-scan": "bash scripts/secret-scan.sh",
"install:common-plat": "BYTELYST_PACKAGE_SOURCE=common-plat pnpm install -r",
"install:gitea": "BYTELYST_PACKAGE_SOURCE=gitea pnpm install -r"
}
}