Run amanita to pull in templated files
This commit is contained in:
parent
208a90e7b9
commit
61c93d04db
15 changed files with 533 additions and 9 deletions
1
drush/README.md
Normal file
1
drush/README.md
Normal file
|
@ -0,0 +1 @@
|
|||
This directory contains commands, configuration and site aliases for Drush. See http://packages.drush.org/ for a directory of Drush commands installable via Composer.
|
29
drush/drush.yml
Normal file
29
drush/drush.yml
Normal file
|
@ -0,0 +1,29 @@
|
|||
command:
|
||||
sql:
|
||||
dump:
|
||||
options:
|
||||
# Omit cache and similar tables (including during a sql:sync).
|
||||
structure-tables-key: common
|
||||
# Don't bother pulling migration tables at all.
|
||||
skip-tables-key: common
|
||||
sql:
|
||||
# List of tables whose *data* is skipped by the 'sql-dump' and 'sql-sync'
|
||||
# commands when the "--structure-tables-key=common" option is provided.
|
||||
# You may add specific tables to the existing array or add a new element.
|
||||
structure-tables:
|
||||
common:
|
||||
- cache
|
||||
- 'cache_*'
|
||||
- history
|
||||
- 'search_*'
|
||||
- 'sessions'
|
||||
- 'watchdog'
|
||||
# List of tables to be omitted entirely from SQL dumps made by the 'sql-dump'
|
||||
# and 'sql-sync' commands when the "--skip-tables-key=common" option is
|
||||
# provided on the command line. This is useful if your database contains
|
||||
# non-Drupal tables used by some other application or during a migration for
|
||||
# example. You may add new tables to the existing array or add a new element.
|
||||
skip-tables:
|
||||
common:
|
||||
- 'migration_*'
|
||||
|
18
drush/sites/self.site.yml
Normal file
18
drush/sites/self.site.yml
Normal file
|
@ -0,0 +1,18 @@
|
|||
live:
|
||||
host: experienceolympic.com
|
||||
paths:
|
||||
drush-script: /home/experienceolympic_live/site/vendor/bin/drush
|
||||
env-vars:
|
||||
PATH: /home/experienceolympic_live/bin:/usr/bin:/bin
|
||||
root: /home/experienceolympic_live/site/web
|
||||
uri: 'experienceolympic-live.drutopia.org'
|
||||
user: experienceolympic_live
|
||||
test:
|
||||
host: experienceolympic.com
|
||||
paths:
|
||||
drush-script: /home/experienceolympic_test/site/vendor/bin/drush
|
||||
env-vars:
|
||||
PATH: /home/experienceolympic_test/bin:/usr/bin:/bin
|
||||
root: /home/experienceolympic_test/site/web
|
||||
uri: 'experienceolympic-test.drutopia.org'
|
||||
user: experienceolympic_test
|
Loading…
Add table
Add a link
Reference in a new issue