Skip to content

Commit 53f211b

Browse files
docs: updated contributing guidelines to easily contribute (shadcn-ui#1830)
## Explanation Added detailed info to clone and setup the project to contribute. Following the PR shadcn-ui#1650 and suggestion of @shadcn. Thanks!
1 parent a2ed288 commit 53f211b

File tree

1 file changed

+21
-8
lines changed

1 file changed

+21
-8
lines changed

CONTRIBUTING.md

+21-8
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,31 @@ packages
4545

4646
## Development
4747

48-
### Start by cloning the repository:
48+
### Fork this repo
4949

50+
You can fork this repo by clicking the fork button in the top right corner of this page.
51+
52+
### Clone on your local machine
53+
54+
```bash
55+
git clone https://github.com/your-username/ui.git
5056
```
51-
git clone git@github.com:shadcn-ui/ui.git
57+
58+
### Navigate to project directory
59+
60+
```bash
61+
cd ui
5262
```
5363

54-
### Install dependencies
64+
### Create a new Branch
5565

66+
```bash
67+
git checkout -b my-new-branch
5668
```
69+
70+
### Install dependencies
71+
72+
```bash
5773
pnpm install
5874
```
5975

@@ -65,13 +81,13 @@ You can use the `pnpm --filter=[WORKSPACE]` command to start the development pro
6581

6682
1. To run the `ui.shadcn.com` website:
6783

68-
```
84+
```bash
6985
pnpm --filter=www dev
7086
```
7187

7288
2. To run the `shadcn-ui` package:
7389

74-
```
90+
```bash
7591
pnpm --filter=shadcn-ui dev
7692
```
7793

@@ -134,13 +150,10 @@ the following categories:
134150

135151
e.g. `feat(components): add new prop to the avatar component`
136152

137-
138153
If you are interested in the detailed specification you can visit
139154
https://www.conventionalcommits.org/ or check out the
140155
[Angular Commit Message Guidelines](https://github.com/angular/angular/blob/22b96b9/CONTRIBUTING.md#-commit-message-guidelines).
141156

142-
143-
144157
## Requests for new components
145158

146159
If you have a request for a new component, please open a discussion on GitHub. We'll be happy to help you out.

0 commit comments

Comments
 (0)