Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Default setup docs update #73

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,26 @@ You can deploy this template to Vercel with the button below:

You can also clone & create this repo locally with the following command:

> ⚠️ **Avoid** installation with `npm` and `npx` [due to this issue](https://github.com/steven-tey/precedent/issues/47)

```bash
yarn create next-app precedent --example "https://github.com/steven-tey/precedent"
pnpm create next-app precedent --example "https://github.com/steven-tey/precedent"
bunx create-next-app precedent --example "https://github.com/steven-tey/precedent"

# NOT RECOMMENDED
npx create-next-app precedent --example "https://github.com/steven-tey/precedent"
```

Then, install the dependencies with your package manager of choice:
Install the dependencies with your package manager of choice:

```bash
npm i
yarn
pnpm i
bun i

# NOT RECOMMENDED
npm i
```

## Tech Stack + Features
Expand Down