Initial demo setup for Komodo + Gitea integration

Added:
- Simple Express.js app with health endpoint
- Dockerfile for containerization
- Docker Compose configuration
- Komodo resource definitions (.komodo/resources.toml)
- Comprehensive README with integration details

This repo demonstrates Build, Stack, and Sync resources.
This commit is contained in:
2025-12-14 13:52:02 -08:00
parent 85e5128b00
commit 88a5a774b8
6 changed files with 156 additions and 2 deletions

12
package.json Normal file
View File

@@ -0,0 +1,12 @@
{
"name": "komodo-demo-app",
"version": "1.0.0",
"description": "Demo app for Komodo + Gitea integration",
"main": "app.js",
"scripts": {
"start": "node app.js"
},
"dependencies": {
"express": "^4.18.2"
}
}