-
Notifications
You must be signed in to change notification settings - Fork 396
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changing deploy to use rsync. (#162)
* Changing deploy to use rsync. * Adding excludes file for rsync. * Ignoring more files in deploy. * Protecting .git during rsync. * Adding more tests for deploy artifact.
- Loading branch information
Showing
5 changed files
with
124 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,88 @@ | ||
# This file will be copied into the docroot of the build artifact. | ||
# @see docroot/example.gitignore | ||
local.* | ||
*.local | ||
|
||
# Ignore paths that contain user-generated content. | ||
sites/*/files | ||
sites/*/private | ||
docroot/sites/*/files | ||
docroot/sites/*/private | ||
|
||
# Front end libraries. | ||
node_modules | ||
bower_components | ||
|
||
# OS X | ||
.DS_Store | ||
.AppleDouble | ||
.LSOverride | ||
Icon | ||
|
||
# Thumbnails | ||
._* | ||
|
||
# Files that might appear on external disk | ||
.Spotlight-V100 | ||
.Trashes | ||
|
||
# Windows image file caches | ||
Thumbs.db | ||
ehthumbs.db | ||
|
||
# Folder config file | ||
Desktop.ini | ||
|
||
# Recycle Bin used on file shares | ||
$RECYCLE.BIN/ | ||
|
||
# Eclipse | ||
*.pydevproject | ||
.project | ||
.metadata | ||
tmp/** | ||
tmp/**/* | ||
*.tmp | ||
*.bak | ||
*.swp | ||
*~.nib | ||
local.properties | ||
.classpath | ||
.settings/ | ||
.loadpath | ||
|
||
# External tool builders | ||
.externalToolBuilders/ | ||
|
||
# Locally stored "Eclipse launch configurations" | ||
*.launch | ||
|
||
# CDT-specific | ||
.cproject | ||
|
||
# PDT-specific | ||
.buildpathk | ||
|
||
# Emacs | ||
*~ | ||
\#*\# | ||
/.emacs.desktop | ||
/.emacs.desktop.lock | ||
*.elc | ||
auto-save-list | ||
tramp | ||
.\#* | ||
|
||
# User-specific stuff: | ||
.idea/ | ||
|
||
#XHProf | ||
xhprof_* | ||
|
||
#Sass | ||
.sass-cache | ||
*.css.map | ||
|
||
#Netbeans IDE | ||
nbproject | ||
nbproject/* | ||
|
||
#DrupalVM | ||
.vagrant/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# These files and their children will not be copied to the deployment artifact. | ||
# If these files already exist in the upstream artifact, they will be removed. | ||
.drush-use | ||
.idea | ||
.git | ||
.gitignore | ||
.travis.yml | ||
.vagrant | ||
blt.sh | ||
bower_components | ||
build | ||
deploy | ||
docroot/core | ||
docroot/libraries/contrib | ||
docroot/modules/contrib | ||
docroot/themes/contrib | ||
drush/contrib | ||
drush.wrapper | ||
local.* | ||
node_modules | ||
project.yml | ||
readme | ||
sites/*/files | ||
sites/*/private | ||
tests | ||
Vagrantfile | ||
vendor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters