From 59c5aadc2b5b095ffaded16c20465979357a8635 Mon Sep 17 00:00:00 2001 From: Komodo Bot Date: Sun, 14 Dec 2025 15:39:47 -0800 Subject: [PATCH] Fix Stack TOML syntax - flatten config structure - Remove nested [stack.config.repo] table - Use flat config with file_paths array - Stack config now matches Komodo TOML format --- .komodo/resources.toml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.komodo/resources.toml b/.komodo/resources.toml index 836efbe..e25aa0e 100644 --- a/.komodo/resources.toml +++ b/.komodo/resources.toml @@ -24,18 +24,11 @@ description = "Deploy komodo app using docker-compose" tags = ["gitea"] [stack.config] -# Use compose file from git repo -[stack.config.repo] git_provider = "gitea.straymoog.xyz" git_account = "stray" repo = "stray/komodo" branch = "main" -path = "docker-compose.yml" - -# Or optionally, define inline compose content -# file_contents = ''' -# ... compose yaml here ... -# ''' +file_paths = ["docker-compose.yml"] [[sync]] name = "komodo-sync"