Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 837 Bytes

Contributing.md

File metadata and controls

37 lines (26 loc) · 837 Bytes

Add Quote:

Contributions are welcome and encouraged! If you want to add Quote to the QuoteVerse, first of all ⭐Star the repository then follow these steps:

  1. Fork the repository and clone it to your local machine.

    git clone https://github.com/<your-username>/QuoteVerse.git
    cd QuoteVerse
  2. Open Quote.js and add a new Object in the array, for example :

    {
       quote: "your-quote-text",
       category: "quote-category",
       author: "author-of-the-quote",
       addedBy: "your-guthub-username"
    }
  3. Now save the file and make a commit.

    git commit -m "Added new quote"
  4. Push your changes to your forked repository.

    git push origin main
  5. Open a pull request on the original repository.

  6. Wait until your PR get merged.