Last active
December 22, 2015 07:10
-
-
Save ShinichiNishikawa/073fedd4d76ef818cc26 to your computer and use it in GitHub Desktop.
Movefile for my local
This file contains hidden or 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
local: | |
vhost: "http://example.dev" | |
wordpress_path: "/Users/papa/Sites/example.dev" | |
database: | |
name: "example" | |
user: "root" | |
password: "root" | |
host: "localhost" | |
staging: | |
vhost: "http://example.com" | |
wordpress_path: "/var/www/vhosts/i-example" | |
database: | |
name: "remote_db_name" | |
user: "remote_db_user" | |
password: "remote_db_pass" | |
host: "localhost" | |
exclude: | |
- ".git/" | |
- ".gitignore" | |
- ".sass-cache/" | |
- ".ssh/" | |
- ".pki/" | |
- "bin/" | |
- "tmp/*" | |
- "Gemfile*" | |
- "Movefile" | |
- "wp-cli.yml" | |
- "wp-config.php" | |
- "wp-content/*.sql" | |
- "wp-content/.git" | |
- "wp-content/.gitignore" | |
- "*.sql" | |
ssh: | |
host: "192.0.2.0" | |
user: "nginx" | |
port: 20022 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment