Utility scripts for development and deployment.
# Run all development servers
./scripts/dev.sh
# Run specific app
./scripts/dev.sh desktop
./scripts/dev.sh marketplace# Build all projects
./scripts/build.sh
# Build for release
./scripts/build.sh --release# Run all tests
./scripts/test.sh
# Run with coverage
./scripts/test.sh --coverage# Deploy to production
./scripts/deploy.sh --target production
# Deploy to staging
./scripts/deploy.sh --target stagingdev.sh- Starts development servers for all appsbuild.sh- Builds all projects for productiontest.sh- Runs test suitedeploy.sh- Deploys applicationsclean.sh- Cleans build artifactssetup.sh- Initial project setup