CONTRIBUTING.md (1198B)
1 # Contributing to Veyrix IDE 2 3 We welcome contributions to Veyrix IDE! Whether it is a bug report, a new feature, or a documentation update, your help is appreciated. 4 5 ## How to Contribute 6 7 1. Fork the Repository 8 Navigate to the GitHub repository and fork the project to your personal account. 9 10 2. Clone Your Fork 11 Clone your forked repository to your local machine. 12 `git clone https://github.com/your-username/veyrix.git` 13 14 3. Create a Branch 15 Create a new branch for your specific feature or bugfix. 16 `git checkout -b feature/your-feature-name` 17 18 4. Make Your Changes 19 Implement your changes. Please ensure your code adheres to the existing style and architecture of the project. 20 21 5. Commit and Push 22 Commit your changes with clear, descriptive commit messages. 23 `git commit -m "Add descriptive message here"` 24 `git push origin feature/your-feature-name` 25 26 6. Submit a Pull Request 27 Go to the original repository on GitHub and open a Pull Request. Provide a detailed description of the changes you have made and the problem they solve. 28 29 ## Reporting Bugs 30 31 If you find a bug, please open an issue in the repository. Include clear steps to reproduce the issue, your browser version, and your operating system.