This repository contains a basic installation of Drupal 9 with a custom theme created using EmulsifyCLI. The project is designed to be used with Lando, a local development environment tool, which simplifies the process of running and managing the project.
You must have the following requirements installed locally for being able to set up this project
- Lando 3.6.4
- Docker 4.15.0
- Composer 2.4.3
- NVM 0.39.2
- Node.js 18.11.0 (using nvm:
nvm install v18.11.0
) - NPM 8.19.2
To install the project, follow these steps
Clone the repository to your local machine
git clone [email protected]:ParallelDevs/emulsify-demo.git
Start the Lando environment
lando start
Import the database
lando db-import db-backup.gz
Install the dependencies
composer install
Import local configuration files
lando drush cim
Navigate to the custom theme directory:
cd web/themes/custom/tutorial/
Use the correct version of Node.js using node version manager (nvm)
nvm use
Install the theme dependencies
npm install
composer install
To build a production-ready version of the application
npm run build
Start a local development server
npm run develop
To run Storybook
npm run storybook