Hello World test app for CI/CD pipeline testing
  • HTML 88.1%
  • Dockerfile 11.9%
Find a file
2026-02-04 20:14:37 +00:00
.gitignore Initial commit: Hello World test app 2026-02-04 14:47:59 -03:00
Dockerfile Initial commit: Hello World test app 2026-02-04 14:47:59 -03:00
index.html index.html aktualisiert 2026-02-04 20:14:37 +00:00
README.md Initial commit: Hello World test app 2026-02-04 14:47:59 -03:00

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.

  1. Make changes to index.html
  2. Commit and push to Forgejo
  3. Coolify webhook triggers automatic rebuild and deployment
  4. Changes appear at https://test.noneofyourbidness.com

CI/CD Flow

Developer → Git Push → Forgejo → Webhook → Coolify → Docker Build → Deploy