You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Install dependencies
npm install
# Run tests
npm test# Run tests with coverage
npm test -- --coverage
# Build project
npm run build
# Start development server
npm run dev
# Start production server
npm start
Deployment
# Deploy to development
git push origin develop
# Deploy to staging
git push origin staging
# Deploy to production
git push origin main
Validation
# Validate configuration
NODE_ENV=production npm run build
node -e "const {loadEnvironmentConfig}=require('./dist/config/environment');console.log(loadEnvironmentConfig())"# Check test coverage
npm test -- --coverage --coverageReporters=text-summary
Environment Variables
Required
NODE_ENV - Environment name (development, staging, production)