Last active
January 24, 2018 23:08
-
-
Save kainiklas/60559c626c712b11e17274c63c96f22c to your computer and use it in GitHub Desktop.
Example of a PHPPloy configuration for CakePHP
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
| [production] | |
| scheme = ftp | |
| user = 'username' | |
| host = 'demo.com' | |
| path = '/' | |
| ssl = true | |
| ; files that should be ignored and not uploaded to the server, but are still tracked in git | |
| exclude[] = 'config/schema/*' | |
| exclude[] = 'tests/*' | |
| exclude[] = '.editorconfig' | |
| exclude[] = '.gitattributes' | |
| exclude[] = '.travis.yml' | |
| exclude[] = 'composer.json' | |
| exclude[] = 'composer.lock' | |
| ; Files that are ignored by git, but you should be send to server | |
| include[] = 'vendor/*' | |
| ; Filed that should be deleted on the server | |
| purge[] = "tmp/" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment