Skip to content

Latest commit

 

History

History
51 lines (39 loc) · 1.58 KB

CONTRIBUTING.md

File metadata and controls

51 lines (39 loc) · 1.58 KB

Contributing to shadcn-react-wavesurfer

Thank you for your interest in contributing to this project! Below are some guidelines to help you get started.

How to Contribute

  1. Fork the Repository:

    • Click the "Fork" button on the top right of the repository page to create your own copy of this repository.
  2. Clone Your Fork:

    • Clone your forked repository to your local machine:
      git clone https://github.com/<your-username>/shadcn-react-wavesurfer.git
      Replace <your-username> with your GitHub username.
  3. Create a Branch:

    • Create a new branch for your feature or bug fix:
      git checkout -b my-feature-branch
  4. Make Your Changes:

    • Implement your changes and make sure to test them. You can run the development server to see your changes live:
      npm run dev
  5. Commit Your Changes:

    • Stage your changes and commit them with a clear message:
      git add .
      git commit -m "Description of changes made"
  6. Push Your Changes:

    • Push your changes to your fork:
      git push origin my-feature-branch
  7. Create a Pull Request:

    • Go back to the original repository and create a pull request from your branch. Include a description of the changes you made.

Reporting Issues

If you find a bug or have a feature request, please open an issue in this repository with detailed information.

Code of Conduct

Please be respectful and constructive in your interactions with others in the community.

Thank you for contributing!