Thank you for your interest in contributing to this project! Below are some guidelines to help you get started.
-
Fork the Repository:
- Click the "Fork" button on the top right of the repository page to create your own copy of this repository.
-
Clone Your Fork:
- Clone your forked repository to your local machine:
Replace
git clone https://github.com/<your-username>/shadcn-react-wavesurfer.git
<your-username>
with your GitHub username.
- Clone your forked repository to your local machine:
-
Create a Branch:
- Create a new branch for your feature or bug fix:
git checkout -b my-feature-branch
- Create a new branch for your feature or bug fix:
-
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
- Implement your changes and make sure to test them. You can run the development server to see your changes live:
-
Commit Your Changes:
- Stage your changes and commit them with a clear message:
git add . git commit -m "Description of changes made"
- Stage your changes and commit them with a clear message:
-
Push Your Changes:
- Push your changes to your fork:
git push origin my-feature-branch
- Push your changes to your fork:
-
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.
If you find a bug or have a feature request, please open an issue in this repository with detailed information.
Please be respectful and constructive in your interactions with others in the community.
Thank you for contributing!