Now you don't need to run drush cr every time.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * @file | |
| * This is a Drupal 10 settings.ddev.php file automatically generated by DDEV. | |
| * | |
| * DDEV manages this file and may delete or overwrite it unless this | |
| * comment, marked with #ddev-generated, is removed. It is recommended | |
| * that you leave this file alone. | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // Get info about Lando | |
| $lando_info = json_decode(getenv('LANDO_INFO'), TRUE); | |
| // Database | |
| $databases['default']['default'] = [ | |
| 'database' => $lando_info['database']['creds']['database'], | |
| 'username' => $lando_info['database']['creds']['user'], | |
| 'password' => $lando_info['database']['creds']['password'], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| parameters: | |
| http.response.debug_cacheability_headers: true | |
| twig.config: | |
| debug: true | |
| auto_reload: true | |
| cache: false | |
| services: | |
| cache.backend.null: | |
| class: Drupal\Core\Cache\NullBackendFactory |