Contributing to Razify
May 4, 2026 ยท View on GitHub
First off, thank you for considering contributing to Razify! It's people like you who make this tool better for everyone.
๐ Quick Start
- Fork the Repository on GitHub.
- Clone your fork locally:
git clone https://github.com/YOUR_USERNAME/razify.git cd razify - Install dependencies:
go mod download - Build and run:
go build . ./razify --help
๐งช Testing
Before submitting a PR, please ensure all tests pass:
go test ./...
๐ฌ Submitting a Pull Request
- Create a new branch for your feature or bugfix:
git checkout -b feature/amazing-new-feature - Commit your changes with descriptive commit messages.
- Push to the branch:
git push origin feature/amazing-new-feature - Open a Pull Request against the
masterbranch.
๐ Coding Standards
- Keep functions small and focused.
- Ensure all new logic is covered by unit tests.
- Run
go fmtbefore committing.
Thank you for helping make Razify the best tool for environment management!