Starter kits are a new concept introduced in Acquia CMS v2 we use for getting started quickly with Next.js. You can learn more about starter kits and the composable architecture that powers them here. In this post, we'll focus specifically on where the starter kits concepts are used to create a quick start with Acquia CMS and Next.js
First up is the Acquia CMS starter kit project. Its a PHP composer library that provides a symfony CLI command called acms
. It is not a Drupal module and will install into Composer's vendor directory:
composer require acquia/acquia-cms-starterkit
Once added, you can interact with it through a console tool to initiate a Drupal starter kit.
Now lets run the acms:install
command to execute a starter kit.
./vendor/bin/acms acms:install
This will ask you several questions about the starter kit you want to start from and any 'add-ons' you want to add in:
Please choose bundle from one of the above use case [acquia_cms_minimal]: > acquia_cms_headless Do you want to include Demo Content (yes/no) ? [no]: > yes
Then the tool will:
Some of the dependencies may also preconfigure the way certain modules work.
Now with your site installed, you can login and look around. The next starter kit we want to look at is in the Acquia CMS Tour module.
Now logged into CMS, checkout the Tour from the admin navigation and click on Get Started.
Under the 'headless' dropdown you'll see an option to enable 'headless mode' - this is not a starter kit per-se but instead a way for Drupal to operate as purely a headless CMS. Since it is a mode and not a starter kit, it can be turned off and on again.
Above the headless mode option, you'll see the Next.js starter kit checkbox. This will pre-configure Drupal to be connected with a local Next.js app - perfect for getting started on a local development environment.
This one step does 9 different things for you:
Now go ahead and copy these credentials somewhere safe. The DRUPAL_CLIENT_SECRET cannot be retrieved from Drupal because it is stored as an encrypted value (like passwords are). So if you forget or loose this value, you'll need to head to the API Dashboard later to reset your consumer secret.
Now that the CMS is configured, we can kick start our Next.js project with the next-acms starter kit.
npx create-next-app -e https://github.com/acquia/next-acms/tree/main/starters/basic-starter
Note: We recommend Node 16 or later.
Now in your new Next.js application, copy the .env.example
file and replace the contents with those from Acquia CMS:
cp .env.example .env.local
Finally, run the development server, which should spin up on localhost:3000 and visit the site - you should see a Next.js application pulling content from Acquia CMS!
npm run dev
Tutorials are available and free on
If this content did not answer your questions, try searching or contacting our support team for further assistance.
Fri Sep 12 2025 08:52:30 GMT+0000 (Coordinated Universal Time)