Thank you for your interest in contributing to this project! We appreciate all contributions, whether they're bug fixes, improvements, or new features.
-
Fork the repository: Click on the "Fork" button at the top right of this page and create your own fork of the repository.
-
Clone your fork: Once you have forked the repo, clone it to your local machine:
git clone https://github.com/[your-username]/leapat.git
cd your-repo-name
- Create a new branch: Create a branch for your feature or bugfix:
git checkout -b your-branch-name
- Install dependencies: Run the following command to install all necessary dependencies:
npm install
-
Make your changes: Implement your feature, fix bugs, or improve the documentation.
-
Test your changes: Run the development server and test your changes:
npm run dev
- Commit your changes: Once you're happy with your changes, commit them:
git add .
git commit -m "Brief description of your changes"
- Push your changes: Push your changes to your fork:
git push origin your-branch-name
Create a Pull Request: Go to the original repository on GitHub and create a Pull Request (PR) from your branch. Provide a clear description of the changes you've made and why they're necessary.