Adds template command for .env.template generation#3
Merged
amannirala13 merged 3 commits intomainfrom Oct 19, 2025
Merged
Conversation
Add envg template command to generate .env.template from manifest: - Generates template with all required and optional variables - Required vars uncommented, optional vars commented - Use --force to overwrite existing template - Auto-documents environment variables for version control Usage: envg template # Generate .env.template envg template --force # Overwrite existing 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Updates the CLI package to version 0.1.3, likely incorporating new features and improvements related to logger integration.
Merge pull request #1 from amannirala13/cli/logger
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.
Introduces a new
envg templatecommand that generates a.env.templatefile. This command simplifies the documentation of environment variables for projects utilizing EnvGuard.The generated file lists all required and optional secret keys from the EnvGuard manifest. It provides a clear blueprint for necessary configurations, allowing teams to version control their environment structure without compromising sensitive data.
.env.templatefile with placeholders for all configured secrets.--forceoption to overwrite existing.env.templatefiles.@envguard/clipackage version to0.1.3.