Added: - SETUP_GUIDE.md: Complete step-by-step integration guide - komodo-gitea.config.toml: Gitea provider config snippet The guide covers: - Git provider configuration - Resource import options (Sync vs Manual) - Webhook setup with examples - Troubleshooting tips
18 lines
530 B
TOML
18 lines
530 B
TOML
# Komodo Core Config - Gitea Provider Configuration
|
|
# Add this to your existing core.config.toml file
|
|
|
|
[[git_provider]]
|
|
domain = "gitea.straymoog.xyz"
|
|
accounts = [
|
|
{ username = "komodo", token = "18f8305e245023e8f5863991b66610854d6d9820" }
|
|
]
|
|
|
|
# You can add multiple accounts for the same provider:
|
|
# accounts = [
|
|
# { username = "komodo", token = "18f8305e245023e8f5863991b66610854d6d9820" },
|
|
# { username = "stray", token = "268dd470b10566b24df0db8c6f9369eec4b6e2cc" }
|
|
# ]
|
|
|
|
# If using HTTP instead of HTTPS:
|
|
# https = false
|