Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 956 Bytes

CONTRIBUTING.md

File metadata and controls

25 lines (19 loc) · 956 Bytes

How to add a community

Our goal is to make the act of contributing an enjoyable and exciting method of learning how to participate in open-source projects. To include a community, follow these steps:

  1. Fork the repository

  2. Clone the project to your local machine.

  3. Run the project but before make sure to install the dependencies:

# npm
npm install
npm run dev
  1. Create a new branch (i.e. add/the-community-name).

  2. Edit the file public/data/communities.ts. Within this file, you'll find an array consisting of objects that represent portfolios. Your task is to append an object to this table, ensuring it follows the chronological order. image

The type of the datas is in types.ts

  • name is mandatory.
  • links must have at least one element.
  1. Commit changes and push the new branch.

  2. Open and submit a PR.