Thank you for considering contributing to CryptoTracker! We welcome contributions from everyone. Here are some guidelines to help you get started.
-
Fork the Repository: Click the "Fork" button at the top right of this repository to create a copy of the repository in your GitHub account.
-
Clone the Repository: Clone your forked repository to your local machine.
git clone https://github.com/your-username/CryptoTracker.git
-
Create a Branch: Create a new branch for your feature or bugfix.
git checkout -b feature/your-feature-name
-
Make Changes: Make your changes to the codebase.
-
Commit Changes: Commit your changes with a meaningful commit message.
git add . git commit -m "Add meaningful commit message"
-
Push Changes: Push your changes to your forked repository.
git push origin feature/your-feature-name
-
Create a Pull Request: Go to the original repository and create a pull request from your forked repository.
Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.
If you find a bug or have a feature request, please create an issue in the Issue Tracker.
- Follow the existing code style.
- Write clear and concise commit messages.
- Ensure your code passes all tests before submitting a pull request.
Please ensure that your changes do not break existing tests and add new tests for new features. Run the test suite using:
npm test
Thank you for contributing!
CryptoTracker Team