You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> **External contributors**: You don't have push access to this repo — that's normal for open source! You'll need to **fork first**, then clone your fork. See the workflow below.
21
16
22
-
Open http://localhost:5173
17
+
1.**Fork the repository** — Click the "Fork" button on [the repo page](https://github.com/block/thread-manager-for-amp), or use the GitHub CLI:
18
+
19
+
```bash
20
+
gh repo fork block/thread-manager-for-amp --clone
21
+
cd thread-manager-for-amp
22
+
```
23
+
24
+
2.**Install dependencies and start dev server**:
25
+
26
+
```bash
27
+
pnpm install
28
+
pnpm dev
29
+
```
30
+
31
+
3. Open http://localhost:5173
23
32
24
33
## Development Workflow
25
34
26
-
1.Fork and clone the repository
35
+
1.Make sure your fork is up to date: `git pull upstream main`
27
36
2. Create a feature branch: `git checkout -b my-feature`
0 commit comments