Thank you for your interest in contributing to fxCreate! We welcome contributions of all kinds, including bug reports, feature requests, code contributions, and documentation improvements.
- Fork the repository you want to contribute to.
- Clone your fork locally:
git clone https://github.com/your-username/fxCreate.git
- Navigate into the project directory:
cd fxCreate - Add the upstream repository:
git remote add upstream https://github.com/fxCreate/fxCreate.git
Most of our projects use Node.js and TypeScript. Install dependencies using:
npm install- Bug Reports: Provide a clear description of the issue, steps to reproduce, expected behavior, and actual behavior.
- Feature Requests: Explain the problem the feature would solve and any possible implementation details.
- Enhancements: Describe improvements to existing functionality.
- Use Prettier for formatting (if applicable):
npm run format
- Lint Your Code:
npm run lint
- Write Descriptive Commit Messages:
git commit -m "feat: add new CLI command for resource creation"
Run tests before submitting your PR:
npm test- Push your changes:
git push origin main
- Open a pull request on GitHub with a detailed description.
- Ensure all checks pass and be open to feedback from maintainers.
All contributors must adhere to our Code of Conduct.
By contributing, you agree that your contributions will be licensed under the project’s MIT License.
Thank you for helping improve fxCreate! 🚀