diff --git a/src/Handler.php b/src/Handler.php
index e0041266994e51432f845e7b7d31857d82609317..a7a85b2ea08bdb25b6f7116788a60ba6087f9669 100644
--- a/src/Handler.php
+++ b/src/Handler.php
@@ -70,11 +70,10 @@ class Handler extends BaseHandler {
     // Directory where this plugin is being installed.
     $pluginRoot = $installationManager->getInstallPath($this->getPackage('lakedrops/drupal-development-environment'));
 
-    // Create contrib/custom dirs for modules, profiles, recipes and themes.
+    // Create contrib/custom dirs for modules, profiles and themes.
     foreach ([
       $webRoot . '/modules',
       $webRoot . '/profiles',
-      $webRoot . '/recipes',
       $webRoot . '/themes',
     ] as $dir) {
       foreach (['contrib', 'custom'] as $subdir) {
@@ -149,6 +148,9 @@ class Handler extends BaseHandler {
 
     // Git Ignore output from simpletest.
     $this->gitIgnore('web/sites/simpletest');
+
+    // Git Ignore recipes.
+    $this->gitIgnore('/recipes/');
   }
 
 }
diff --git a/templates/tests/phpcs.files b/templates/tests/phpcs.files
index 1dbabc640868688a9ca72045b88dbdf53f150bc1..1efc94e10645ddfd4dd699cc6f83f644fa683851 100644
--- a/templates/tests/phpcs.files
+++ b/templates/tests/phpcs.files
@@ -1,4 +1,3 @@
 /var/www/html/web/modules/custom/
 /var/www/html/web/profiles/custom/
-/var/www/html/web/recipes/custom/
 /var/www/html/web/themes/custom/
diff --git a/templates/tests/phpunit.xml.dist b/templates/tests/phpunit.xml.dist
index 097d681612fbdb6a0068b377fe5147bee938e125..ee2050f85b6264c36aab90417b358166c7c655a8 100644
--- a/templates/tests/phpunit.xml.dist
+++ b/templates/tests/phpunit.xml.dist
@@ -61,7 +61,6 @@
     <include>
       <directory>../web/modules/custom</directory>
       <directory>../web/profiles/custom</directory>
-      <directory>../web/recipes/custom</directory>
       <directory>../web/themes/custom</directory>
 {% for path in coverage %}
       <directory>{{ path }}</directory>