Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 14 additions & 6 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,19 +74,27 @@ pnpm install

You can use the `pnpm --filter=[WORKSPACE]` command to start the development process for a workspace.

#### Examples
#### Set up environment variables

1. To run the `ui.shadcn.com` website:
Before running any workspace, create a local `.env` file from the example:

```bash
pnpm --filter=v4 dev
cp .env.example .env
```

#### Examples

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

```bash
pnpm --filter=v4 dev
```

2. To run the `shadcn` package:

```bash
pnpm --filter=shadcn dev
```
```bash
pnpm --filter=shadcn dev
```

## Running the CLI Locally

Expand Down