add health endpoint
All checks were successful
Publish Docker Image / docker (push) Successful in 1m51s

This commit is contained in:
Lee 2023-07-12 10:16:52 +01:00
parent 2abf673955
commit a269b49714
2 changed files with 4 additions and 1 deletions

@ -1,6 +1,6 @@
{ {
"name": "simple-links", "name": "simple-links",
"version": "0.1.3", "version": "0.1.4",
"private": false, "private": false,
"scripts": { "scripts": {
"dev": "next dev", "dev": "next dev",

3
src/app/health/page.tsx Normal file

@ -0,0 +1,3 @@
export default function Health() {
return <p>OK</p>;
}