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
DELETE | |
DELETE _template/{name} | |
DELETE {index} | |
DELETE {index}/_alias/{name} | |
DELETE {index}/_query | |
DELETE {index}/_warmer | |
DELETE {index}/_warmer/{name} | |
DELETE {index}/{type} | |
DELETE {index}/{type}/_mapping | |
DELETE {index}/{type}/_query |
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
## Capistrano "push strategy", take 2 | |
# | |
# It's based on "remote_cache", but doesn't rely on a central git repository. | |
# It assumes that the code is already pushed to its "cached-copy". | |
# | |
# Usage: | |
# | |
# git remote add origin example.com:/path/to/my-app/shared/cached-copy/.git | |
# cap deploy | |
# |