Skip to content

Commit

Permalink
feat(#67): lando support and drush to drupal
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonratz committed Mar 9, 2022
1 parent 745c48d commit 8ee8e4c
Show file tree
Hide file tree
Showing 4 changed files with 200 additions and 204 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,18 @@ These commands should be run from within the `/drupal` folder.

Refer to the documentation for more details: https://ddev.readthedocs.io

### Lando
> It's a free, open source, cross-platform, local development environment and DevOps tool built on Docker container technology and developed by Tandem.
Lando will manage your Drupal workflow. All commands should be executed within the `/drupal` folder. For additional information on Lando: https://docs.lando.dev/getting-started/

To use Lando

- `cd ./drupal`
- `lando start`
- `drush si --db-url="mysql//drupal9:drupal9@database:3306/drupal9" minimal && drush en druxt -y`
- Visit http://druxt-quickstart.lndo.site/ in your browser

### @nuxtjs/auth-next

> Zero-boilerplate authentication support for Nuxt.js!
Expand Down
12 changes: 12 additions & 0 deletions drupal/.lando.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: druxt-quickstart
recipe: drupal9
config:
webroot: web
type: 'mariadb:10.3'
php: '8.1'
drush: true
composer_version: 2
services:
appserver:
build:
- "composer install --prefer-dist --optimize-autoloader"
2 changes: 1 addition & 1 deletion drupal/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"drupal/core-recommended": "9.3.6",
"drupal/druxt": "1.1.1",
"drupal/simple_oauth": "^5.2",
"drush/drush": "11.0.5",
"drush/drush": "^11.0",
"vlucas/phpdotenv": "^5.4"
},
"require-dev": {
Expand Down
Loading

0 comments on commit 8ee8e4c

Please sign in to comment.