Hello World test app for CI/CD pipeline testing
- HTML 88.1%
- Dockerfile 11.9%
| .gitignore | ||
| Dockerfile | ||
| index.html | ||
| README.md | ||
Hello World - TinyOps CI/CD Test
A simple static website to test the Forgejo → Coolify CI/CD pipeline.
Stack
- Frontend: Static HTML with CSS
- Web Server: nginx (Alpine Linux)
- Hosting: Coolify on Hetzner
- Git: Forgejo (self-hosted)
- Domain: test.noneofyourbidness.com
Local Testing
# Build the Docker image
docker build -t hello-world .
# Run locally
docker run -p 8080:80 hello-world
# Visit http://localhost:8080
Deployment
This project auto-deploys via Coolify when changes are pushed to the Forgejo repository.
- Make changes to
index.html - Commit and push to Forgejo
- Coolify webhook triggers automatic rebuild and deployment
- Changes appear at https://test.noneofyourbidness.com
CI/CD Flow
Developer → Git Push → Forgejo → Webhook → Coolify → Docker Build → Deploy