-
Notifications
You must be signed in to change notification settings - Fork 197
/
Copy pathphploy.ini
28 lines (24 loc) · 936 Bytes
/
phploy.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
; This is a sample phploy.ini file. You can specify as many
; servers as you need and use normal or quickmode configuration.
;
; NOTE: If a value in the .ini file contains any non-alphanumeric
; characters it needs to be enclosed in double-quotes (").
; The special '*' configuration is shared between all other configurations (think include)
[*]
exclude[] = 'src/*'
include[] = "dist/app.css"
[staging]
quickmode = ftp://example:[email protected]:21/path/to/installation
[production]
scheme = sftp
host = staging-example.com
path = /path/to/installation
port = 22
user = example
pass = password
purge-before[] = "dist/"
purge[] = "cache/"
pre-deploy[] = "wget -q -O - http://staging-example.com/pre-deploy/test.php"
post-deploy[] = "wget -q -O - http://staging-example.com/post-deploy/test.php"
pre-deploy-remote[] = "whoami"
post-deploy-remote[] = "date"