File tree 1 file changed +21
-8
lines changed
1 file changed +21
-8
lines changed Original file line number Diff line number Diff line change @@ -45,15 +45,31 @@ packages
45
45
46
46
## Development
47
47
48
- ### Start by cloning the repository:
48
+ ### Fork this repo
49
49
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
50
56
```
51
- git clone git@github.com:shadcn-ui/ui.git
57
+
58
+ ### Navigate to project directory
59
+
60
+ ``` bash
61
+ cd ui
52
62
```
53
63
54
- ### Install dependencies
64
+ ### Create a new Branch
55
65
66
+ ``` bash
67
+ git checkout -b my-new-branch
56
68
```
69
+
70
+ ### Install dependencies
71
+
72
+ ``` bash
57
73
pnpm install
58
74
```
59
75
@@ -65,13 +81,13 @@ You can use the `pnpm --filter=[WORKSPACE]` command to start the development pro
65
81
66
82
1 . To run the ` ui.shadcn.com ` website:
67
83
68
- ```
84
+ ``` bash
69
85
pnpm --filter=www dev
70
86
```
71
87
72
88
2 . To run the ` shadcn-ui ` package:
73
89
74
- ```
90
+ ``` bash
75
91
pnpm --filter=shadcn-ui dev
76
92
```
77
93
@@ -134,13 +150,10 @@ the following categories:
134
150
135
151
e.g. ` feat(components): add new prop to the avatar component `
136
152
137
-
138
153
If you are interested in the detailed specification you can visit
139
154
https://www.conventionalcommits.org/ or check out the
140
155
[ Angular Commit Message Guidelines] ( https://github.com/angular/angular/blob/22b96b9/CONTRIBUTING.md#-commit-message-guidelines ) .
141
156
142
-
143
-
144
157
## Requests for new components
145
158
146
159
If you have a request for a new component, please open a discussion on GitHub. We'll be happy to help you out.
You can’t perform that action at this time.
0 commit comments