Skip to content

Latest commit

 

History

History
57 lines (38 loc) · 1.79 KB

Contributing.md

File metadata and controls

57 lines (38 loc) · 1.79 KB

Contributing to CryptoTracker

Thank you for considering contributing to CryptoTracker! We welcome contributions from everyone. Here are some guidelines to help you get started.

How to Contribute

  1. 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.

  2. Clone the Repository: Clone your forked repository to your local machine.

    git clone https://github.com/your-username/CryptoTracker.git
  3. Create a Branch: Create a new branch for your feature or bugfix.

    git checkout -b feature/your-feature-name
  4. Make Changes: Make your changes to the codebase.

  5. Commit Changes: Commit your changes with a meaningful commit message.

    git add .
    git commit -m "Add meaningful commit message"
  6. Push Changes: Push your changes to your forked repository.

    git push origin feature/your-feature-name
  7. Create a Pull Request: Go to the original repository and create a pull request from your forked repository.

Code of Conduct

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.

Reporting Issues

If you find a bug or have a feature request, please create an issue in the Issue Tracker.

Style Guide

  • Follow the existing code style.
  • Write clear and concise commit messages.
  • Ensure your code passes all tests before submitting a pull request.

Testing

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