Skip to content

Commit 9ec5fb4

Browse files
committed
Readme
1 parent 6328529 commit 9ec5fb4

File tree

1 file changed

+15
-19
lines changed

1 file changed

+15
-19
lines changed

examples/redis-minimal/README.md

Lines changed: 15 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -5,32 +5,28 @@ This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-
55
First, run the development server:
66

77
```bash
8+
npm i
89
npm run dev
9-
# or
10-
yarn dev
11-
# or
12-
pnpm dev
13-
# or
14-
bun dev
1510
```
1611

17-
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
18-
19-
You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
20-
21-
This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.
12+
Or run build and run production server:
2213

23-
## Learn More
14+
```bash
15+
npm i
16+
npm run build
17+
npm run start
18+
```
2419

25-
To learn more about Next.js, take a look at the following resources:
20+
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
2621

27-
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
28-
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
22+
Modify `.env` file if you need to.
2923

30-
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!
24+
## Examples
3125

32-
## Deploy on Vercel
26+
- http://localhost:3000
27+
- http://localhost:3000/fetch-example
28+
- http://localhost:3000/static-params-test/cache
3329

34-
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
30+
## Clear fetch example cache
3531

36-
Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.
32+
- http://localhost:3000/api/cache

0 commit comments

Comments
 (0)