feat: support repo-local config for context selection - #85
Open
Karnak19 wants to merge 1 commit into
Open
Conversation
- Add .coolify.json / .coolifyrc discovery, walking up from the working directory; nearest file wins, malformed JSON errors instead of silently falling back to the global default - Resolve contexts as: --context flag > repo-local file > global default - Point a missing repo-local context at both the file and the global config in the error, and log the source file under --debug - Keep credentials global: the repo file only names an existing context - Add tests for discovery, precedence and parse failures; document in README Closes coollabsio#58 Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #58 — Support repo-local config for context selection
Adds a repo-local config file so a repository can pin which context every
coolifycommand inside it targets, without anyone having to remember--contextor flip the global default back and forth.Usage
.coolify.json(or.coolifyrc) at the repo root:{ "context": "production" }The CLI walks up from the working directory and uses the nearest one.
Resolution order
--contextflag.coolify.json/.coolifyrcNotes
~/.config/coolify/config.json; tokens stay global..coolify.tomlwould need a TOML parser for a single key — happy to add it if you'd prefer that shape).--debugprints which file the context came from.cli.GetAPIClient, the single point where every command resolves its context, so all commands pick it up.Testing
internal/config/local_test.gocovers discovery from a nested directory, nearest-file-wins, absence, and parse failure.go test ./internal/...andgo vet ./...are green; also verified against a built binary for the override, hit, and miss paths.🤖 Generated with Claude Code