Skip to content

Latest commit

 

History

History
49 lines (32 loc) · 1.33 KB

CONTRIBUTING.md

File metadata and controls

49 lines (32 loc) · 1.33 KB

Contributing to Leapat website

Thank you for your interest in contributing to this project! We appreciate all contributions, whether they're bug fixes, improvements, or new features.

How to Contribute

  1. Fork the repository: Click on the "Fork" button at the top right of this page and create your own fork of the repository.

  2. 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
  1. Create a new branch: Create a branch for your feature or bugfix:
git checkout -b your-branch-name
  1. Install dependencies: Run the following command to install all necessary dependencies:
npm install
  1. Make your changes: Implement your feature, fix bugs, or improve the documentation.

  2. Test your changes: Run the development server and test your changes:

npm run dev
  1. Commit your changes: Once you're happy with your changes, commit them:
git add .
git commit -m "Brief description of your changes"
  1. 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.