Minimal Node.js (Express) application used for deployment validation across container and orchestration platforms.
This repository is part of a cross-stack Deployment Probe Series used to:
- Validate Docker builds
- Test Kubernetes / ECS deployments
- Verify CI/CD smoke tests
- Experiment with runtime behavior across stacks
GET /→ basic JSON responseGET /health→ returns200 OK(health check)GET /ready→ readiness probe endpointGET /live→ liveness probe endpointGET /version→ app version frompackage.jsonand optional commit fromAPP_COMMIT_SHA
npm install
npm start