Files
komodo/.komodo/resources.toml
Komodo Bot 33dda3bc21 Enable two-way sync for Komodo resources
Set commit_to_repo = true to allow Komodo UI changes
(resource creates, updates, deletes) to be automatically
committed back to the git repository.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-14 18:06:43 -08:00

45 lines
883 B
TOML

[[build]]
name = "komodo-build"
description = "Build Docker image for komodo app"
tags = ["gitea"]
[build.config]
# Repo configuration
git_provider = "gitea.straymoog.xyz"
git_account = "stray"
repo = "stray/komodo"
branch = "main"
# Build configuration
build_path = "."
dockerfile_path = "Dockerfile"
# Image configuration
image_name = "komodo-app"
image_tag = "latest"
[[stack]]
name = "komodo-stack"
description = "Deploy komodo app using docker-compose"
tags = ["gitea"]
[stack.config]
git_provider = "gitea.straymoog.xyz"
git_account = "stray"
repo = "stray/komodo"
branch = "main"
file_paths = ["docker-compose.yml"]
[[sync]]
name = "komodo-sync"
description = "Sync Komodo resources from Git"
tags = ["gitea"]
[sync.config]
git_provider = "gitea.straymoog.xyz"
git_account = "stray"
repo = "stray/komodo"
branch = "main"
resource_path = ".komodo"
commit_to_repo = true