From 94cf5aeef5cefc244fa1dd703bf30cd2ab3ef6f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Thu, 18 Jul 2019 23:27:19 -0400 Subject: [PATCH] I think this is safe to commit across environments Note that i deleted a 'sync' directory config it added so that our own would be used. --- ddev_drush_settings.php | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 ddev_drush_settings.php diff --git a/ddev_drush_settings.php b/ddev_drush_settings.php new file mode 100644 index 0000000..1f61795 --- /dev/null +++ b/ddev_drush_settings.php @@ -0,0 +1,24 @@ + 0) { + $databases['default']['default'] = array( + 'database' => "db", + 'username' => "db", + 'password' => "db", + 'host' => "127.0.0.1", + 'driver' => "mysql", + 'port' => 32768, + 'prefix' => "", + ); +} else { + // or the old db_url format for d6 + $db_url = 'mysqli://db:db@127.0.0.1:32768/db'; +}