A barebones Next.js web application that does nothing other than serve an upbeat for basic health checking. This application is meant to be used as a basic container-based application for traffic flow checks.
- Run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
- Visit
/up
to see your upbeat health check.
This application is publicly available via docker pull michaelweiner/upbeat:latest
. If needed, the container image can be built and run locally by:
- Build image via
docker build -t upbeat:dev .
. - Start a container via
docker run -p 3000:3000 upbeat:dev
. - Visit
localhost:3000
in a browser on your local machine.