feat: Remove Caddy and Docker configuration; add Express server with health checker endpoint

This commit is contained in:
Marco Gallegos
2025-11-24 20:09:02 -06:00
parent 227f887c78
commit 5c13fa51c3
6 changed files with 77 additions and 80 deletions

14
package.json Normal file
View File

@@ -0,0 +1,14 @@
{
"name": "soul23-coming-soon",
"version": "1.0.0",
"description": "Landing page for Soul:23 with a health checker endpoint for the ops team.",
"scripts": {
"start": "node server.js"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"express": "^4.18.2"
}
}