feat: add demo app

This commit is contained in:
2026-04-17 13:30:10 +08:00
commit 0592061237
3 changed files with 38 additions and 0 deletions

11
README.md Normal file
View File

@@ -0,0 +1,11 @@
# demo-app
Minimal Python HTTP service used to validate the Gitea -> Tekton -> Harbor flow.
## Local Test
```bash
docker build -t demo-app:local .
docker run --rm -p 8080:8080 demo-app:local
curl http://127.0.0.1:8080/
```