Skip to content
Snippets Groups Projects

Replace quick-start with launch commands

Merged Adam G-H requested to merge issue/drupal_cms-3476076:3476076-launch-command into 0.x
Files
3
#!/bin/bash
## Description: Installs Drupal CMS and opens it in a browser.
set -e
ddev start
ddev composer install
ddev drush site:install --yes
test -n "$CI" || ddev launch
Loading