Skip to content

Instantly share code, notes, and snippets.

@generalredneck
Last active March 15, 2016 16:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save generalredneck/87ecfc96a5590feb649a to your computer and use it in GitHub Desktop.
Save generalredneck/87ecfc96a5590feb649a to your computer and use it in GitHub Desktop.
diff --git a/drush/example.drushrc.php b/drush/example.drushrc.php
deleted file mode 100644
index 5d1d253..0000000
--- a/drush/example.drushrc.php
+++ /dev/null
@@ -1,33 +0,0 @@
-<?php
-
-/**
- * @file
- * Drush site-specific configuration file.
- *
- * Rename this file to `drushrc.php` and customize to suit
- * your site-specific needs for Drush configuration settings.
- *
- * See also the example.drushrc.php file in the Drush 'examples'
- * directory for more configuration options. Note that some
- * options must go in your local configuration file in
- * $HOME/.drush/drushrc.php.
- */
-
-/**
- * Configuration filters:
- *
- * List extensions that should be ignored when exporting or
- * importing configuration. Extensions in the 'skip-modules'
- * list will not be included in the exports in core.extension.yml
- * if enabled, and will not be removed from the exports in
- * core.extension.yml if present, even if disabled. Similarly,
- * the 'skip-modules' list will prevent listed modules from being
- * enabled or disabled during configuration import, regardless
- * of whether or not it appears in core.extension.yml.
- *
- * This facility allows you to manually decide whether these
- * modules should be enabled or disabled on a per-environment basis.
- */
-$command_specific['config-export']['skip-modules'] = array('devel');
-$command_specific['config-import']['skip-modules'] = array('devel');
-
diff --git a/sites/default/settings.php b/sites/default/settings.php
deleted file mode 100755
index 9a625fa..0000000
--- a/sites/default/settings.php
+++ /dev/null
@@ -1,25 +0,0 @@
-<?php
-
-/**
- * Load services definition file.
- */
-$settings['container_yamls'][] = __DIR__ . '/services.yml';
-
-/**
- * Include the Pantheon-specific settings file.
- *
- * n.b. The settings.pantheon.php file makes some changes
- * that affect all envrionments that this site
- * exists in. Always include this file, even in
- * a local development environment, to insure that
- * the site settings remain consistent.
- */
-include __DIR__ . "/settings.pantheon.php";
-
-/**
- * If there is a local settings file, then include it
- */
-$local_settings = __DIR__ . "/settings.local.php";
-if (file_exists($local_settings)) {
- include $local_settings;
-}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment