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
# Coolify Hello World
A minimal Node.js + Express + TypeScript app for testing a fresh Coolify deployment on a VPS.
## Local run
```bash
npm install
npm run dev
```
## Production run
```bash
npm install
npm run build
npm run start
```
## Docker build
```bash
docker build -t coolify-hello-world .
docker run -p 3000:3000 coolify-hello-world
```
## Routes
- `/` => simple HTML page
- `/health` => JSON health check
# coolify