rsnext/examples/cms-drupal
Steven 9f9214abe5
Updated create-next-app docs to include pnpm usage (#35755)
This PR updates the docs and examples for `create-next-app` to include pnpm usage.

The following script was used to update every example README:

```js
const fs = require('fs')
const examples = fs.readdirSync('./examples')

for (let example of examples) {
    const filename = `./examples/${example}/README.md`
    const markdown = fs.readFileSync(filename, 'utf8')
    const regex = new RegExp(`^yarn create next-app --example (.*)$`, 'gm')
    const output = markdown.replace(regex, (yarn, group) => {
        const pnpm = `pnpm create next-app -- --example ${group}`
        return `${yarn}\n# or\n${pnpm}`
    })
    fs.writeFileSync(filename, output)
}
```
2022-03-30 21:03:21 +00:00
..
components docs: update CMS examples to use the new tw grid gaps (#34917) 2022-03-01 07:47:28 -06:00
lib Add cms-drupal example (#25198) 2021-06-16 20:59:31 +00:00
pages Add cms-drupal example (#25198) 2021-06-16 20:59:31 +00:00
public/favicon Add cms-drupal example (#25198) 2021-06-16 20:59:31 +00:00
styles Add cms-drupal example (#25198) 2021-06-16 20:59:31 +00:00
.env.local.example Add cms-drupal example (#25198) 2021-06-16 20:59:31 +00:00
.gitignore Add cms-drupal example (#25198) 2021-06-16 20:59:31 +00:00
next.config.js Add cms-drupal example (#25198) 2021-06-16 20:59:31 +00:00
package.json Update all CMS examples dependencies. (#33580) 2022-02-04 00:07:35 +00:00
postcss.config.js Update dependencies of all CMS examples. (#27001) 2021-07-09 14:43:56 +02:00
README.md Updated create-next-app docs to include pnpm usage (#35755) 2022-03-30 21:03:21 +00:00
tailwind.config.js Update all CMS examples dependencies. (#33580) 2022-02-04 00:07:35 +00:00

A statically generated blog example using Next.js and Drupal

This example showcases Next.js's Static Generation feature using Drupal as the data source.

Demo

https://cms-drupal.vercel.app

Deploy your own

Once you have configured the Next.js module for Drupal and have access to the environment variables you'll need, deploy the example using Vercel:

Deploy with Vercel

How to use

Execute create-next-app with npm or Yarn to bootstrap the example:

npx create-next-app --example cms-drupal cms-drupal-app
# or
yarn create next-app --example cms-drupal cms-drupal-app
# or
pnpm create next-app -- --example cms-drupal cms-drupal-app

Setup Drupal

See the Get Started guide here.

Deploy from Our Template

Alternatively, you can deploy using our template by clicking on the Deploy button below.

Deploy with Vercel