https://github.com/dpacassi/drupal-paragraphs-revisioning
A basic Drupal installation using Lando for local development
https://github.com/dpacassi/drupal-paragraphs-revisioning
Last synced: 12 months ago
JSON representation
A basic Drupal installation using Lando for local development
- Host: GitHub
- URL: https://github.com/dpacassi/drupal-paragraphs-revisioning
- Owner: dpacassi
- Created: 2021-10-06T11:40:12.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-12-15T09:03:41.000Z (over 4 years ago)
- Last Synced: 2025-05-29T14:26:26.431Z (about 1 year ago)
- Language: PHP
- Size: 392 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Drupal Paragraphs Revisioning
## Installation
Install [Lando](https://lando.dev/).
Then run:
```
git clone git@github.com:dpacassi/drupal-paragraphs-revisioning.git
cd drupal-paragraphs-revisioning
cp .env.example .env
lando start
```
Run `lando ssh` to SSH into the container and then:
```
cd /app
composer install
cd web
drush cr
drush site:install --existing-config -y
drush cr
drush cim -y
drush cr
```
Note that specially the `drush site:install` command will take a few minutes, so when running that command, it's a
good time to get yourself a coffee :)
After that command you also received the login credentials for the user 1. As an alternative, there's always
`drush uli 1`.
The site can be accessed by [https://dpr.lndo.site/](https://dpr.lndo.site/), (or check your `lando info` output).