Skip to content

Commit

Permalink
docs: update pnpm commands
Browse files Browse the repository at this point in the history
  • Loading branch information
samhwang committed Apr 13, 2024
1 parent cd3a62e commit b83b7ec
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,9 @@ Run these commands at the root of the project
docker compose up -d db

pnpm install
pnpm prisma:gen
pnpm deploy:command
pnpm start
pnpm run prisma:gen
pnpm run deploy:command
pnpm run start
```

---
Expand All @@ -133,8 +133,8 @@ pnpm start
### DB migration & Client Generation

```bash
pnpm prisma:migrate
pnpm prisma:gen
pnpm run prisma:migrate
pnpm run prisma:gen
```

### DB GUI
Expand All @@ -158,7 +158,7 @@ export const commandList: Command[] = [yourCommand];
- Run the `deploy:command` command.

```bash
pnpm deploy:command
pnpm run deploy:command
```

- **IMPORTANT:** You should only deploy your commands **ONCE ONLY** after
Expand All @@ -182,8 +182,8 @@ pnpm deploy:command
### Running lints and tests

```bash
pnpm format
pnpm test
pnpm run format
pnpm run test
```

---
Expand Down

0 comments on commit b83b7ec

Please sign in to comment.