👍🎉 First off, thanks for taking the time to contribute! 🎉👍
It takes a lot of courage to even visit this section. I sincerely appreciate it. Please follow the guidelines in this document to get you started with the repo and codebase.
- Make sure there is no body suggested your feature before
- Follow the "Feature Request" template
- Keep discussing with the team to find the best way to impelement your feature
- Make sure there is no body suggested your feature before
- Follow the "Bug Report" template
- Follow Feature request rules to add a feature request ( ex.
[ Feature Request ] Add "party 🎈" feature
) - Fork the repo
- Clone the repo
git clone <your-fork-url>
- Create new branch ( ex.
feat/party
) for more details follow gitflow rules - Follow the steps of Development section
- Commit your work linked with the issue ( ex.
close #1
) - Push the changes to the fork
git push fork feat/add-party
- Create pull request from your branch
feat/party
to ourmaster
branch
- Install dependencies:
npm i
oryarn
- Run the dev server:
npm run dev
oryarn dev
it will show all components list onlocalhost:3000
; For full docs go to/docs
, runnpm i && npm run dev
- Edit the source code within
/src
- Check changes on
localhost:3000
- Commit your work
git commit -m "feat( fun ): add a party"
for more details check Conventional Commits specification