Skip to content

Commit

Permalink
examples: introduce LaunchPad in strapi (#73244)
Browse files Browse the repository at this point in the history
## 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>
  • Loading branch information
JamBalaya56562 and samcx authored Dec 10, 2024
1 parent 58f9df3 commit 1641c1f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
13 changes: 9 additions & 4 deletions examples/cms-strapi/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@
# dependencies
/node_modules
/.pnp
.pnp.js
.yarn/install-state.gz
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/versions

# testing
/coverage
Expand All @@ -24,9 +28,10 @@
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# local env files
.env*.local
# env files (can opt-in for committing if needed)
.env*

# vercel
.vercel
Expand Down
4 changes: 2 additions & 2 deletions examples/cms-strapi/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
## Deprecated
# Strapi Example

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

0 comments on commit 1641c1f

Please sign in to comment.