Skip to content

Latest commit

 

History

History
44 lines (30 loc) · 985 Bytes

CONTRIBUTING.md

File metadata and controls

44 lines (30 loc) · 985 Bytes

Contributing to the project

Thanks for sharing your interesting in contributing to the project! 🎉

You can find here all the information you need. If somehting is missing please report it in the issues.

Getting Started

This project is built with Astro so all the instructions to run it locally are the same as the Astro documentation.

Development

First install the dependencies with the follow command:

npm install

for run locally project run:

npm run dev

How to Contribute

  1. Fork the repository
  2. Clone the repository to your local machine
  3. Create a new branch
 git checkout -b <branch-name>
  1. Make your changes
  2. Commit and push your changes
 git add .
 git commit -m "commit message"
 git push origin <branch-name>
  1. Create a pull request
  2. Wait for the pull request to be reviewed and merged