Skip to content

Commit

Permalink
Updating configs.
Browse files Browse the repository at this point in the history
  • Loading branch information
mdyoung3 committed Mar 12, 2024
1 parent 24e236f commit 33718ba
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
10 changes: 1 addition & 9 deletions .ddev/config.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: gryphon
name: cardinalservice
type: drupal10
docroot: docroot
php_version: "8.2"
Expand All @@ -19,14 +19,6 @@ composer_version: "2"
web_environment: []
disable_settings_managemen: true
nodejs_version: "16"
hooks:
post-start:
- exec: drush --uri=https://cardinalservice.ddev.site uli

post-import-db:
- exec: drush --uri=https://cardinalservice.ddev.site cr
- exec: drush --uri=https://cardinalservice.ddev.site cim -y
- exec: drush --uri=https://cardinalservice.ddev.site uli


# Key features of ddev's config.yaml:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -161,3 +161,4 @@ drush/sites/.checksums
# Deprecation detector rules
.rules
docroot/sites/**/settings.ddev.php
.ddev/config.local.yaml
6 changes: 6 additions & 0 deletions docroot/sites/default/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -764,3 +764,9 @@
*
* @link https://docs.acquia.com/blt/
*/

// Automatically generated include for settings managed by ddev.
$ddev_settings = dirname(__FILE__) . '/settings.ddev.php';
if (getenv('IS_DDEV_PROJECT') == 'true' && is_readable($ddev_settings)) {
require $ddev_settings;
}

0 comments on commit 33718ba

Please sign in to comment.