Skip to content

Commit 1641c1f

Browse files
examples: introduce LaunchPad in strapi (vercel#73244)
## Description The previous [nextjs-corporate-starter](https://github.com/strapi/nextjs-corporate-starter) has been archived. With the release of Strapi 5, launched an even more awesome demo/starter project called [LaunchPad](https://github.com/strapi/LaunchPad). You can learn more about the LaunchPad app from [the blog](https://strapi.io/blog/launchpad-demo-app). In addition, update [.gitignore](https://github.com/vercel/next.js/blob/canary/examples/cms-strapi/.gitignore). CC: @samcx ### Adding or Updating Examples - [x] The "examples guidelines" are followed from our contributing doc https://github.com/vercel/next.js/blob/canary/contributing/examples/adding-examples.md - [x] Make sure the linting passes by running `pnpm build && pnpm lint`. See https://github.com/vercel/next.js/blob/canary/contributing/repository/linting.md Co-authored-by: Sam Ko <sam@vercel.com>
1 parent 58f9df3 commit 1641c1f

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

examples/cms-strapi/.gitignore

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,12 @@
33
# dependencies
44
/node_modules
55
/.pnp
6-
.pnp.js
7-
.yarn/install-state.gz
6+
.pnp.*
7+
.yarn/*
8+
!.yarn/patches
9+
!.yarn/plugins
10+
!.yarn/releases
11+
!.yarn/versions
812

913
# testing
1014
/coverage
@@ -24,9 +28,10 @@
2428
npm-debug.log*
2529
yarn-debug.log*
2630
yarn-error.log*
31+
.pnpm-debug.log*
2732

28-
# local env files
29-
.env*.local
33+
# env files (can opt-in for committing if needed)
34+
.env*
3035

3136
# vercel
3237
.vercel

examples/cms-strapi/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
## Deprecated
1+
# Strapi Example
22

3-
The Strapi CMS example is deprecated. Please check out [Strapi’s official demo application](https://github.com/strapi/nextjs-corporate-starter).
3+
The official example [LaunchPad](https://github.com/strapi/LaunchPad) for using [Strapi](https://strapi.io/) is available.

0 commit comments

Comments
 (0)