https://github.com/wecodemore/wpstarter/blob/ad004f7693be9c3bf3b2fbc64a48b506ff33b4c7/templates/wp-config.php#L219-L230 This file: https://github.com/ddev/ddev/blob/master/pkg/ddevapp/wordpress/wp-config-ddev.php is being included in the `ENV_VARIABLES` section as so: ```php // Include for ddev-managed settings in wp-config-ddev.php. $ddev_settings = dirname( __FILE__ ) . '/wp-config-ddev.php'; if ( is_readable( $ddev_settings ) && ! defined( 'DB_USER' ) ) { require_once $ddev_settings; } ```
wpstarter/templates/wp-config.php
Lines 219 to 230 in ad004f7
This file: https://github.com/ddev/ddev/blob/master/pkg/ddevapp/wordpress/wp-config-ddev.php
is being included in the
ENV_VARIABLESsection as so: