-
Notifications
You must be signed in to change notification settings - Fork 6
/
no-deploy.json
46 lines (42 loc) · 928 Bytes
/
no-deploy.json
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"type": "delphi deploy config",
"version": 1,
"actions": [
"// site-wide favicon",
{
"type": "move",
"src": "site/favicon.ico",
"dst": "/var/www/html/favicon.ico"
},
"// web sources",
{
"type": "move",
"src": "site/",
"dst": "/var/www/html/",
"match": "^.*\\.(html|css)$",
"add-header-comment": true
},
"// images",
{
"type": "move",
"src": "site/images/",
"dst": "/var/www/html/images/",
"match": "^.+\\.(jpg|png)$"
},
"// team images",
{
"type": "move",
"src": "site/images/team/",
"dst": "/var/www/html/images/team/",
"match": "^.+\\.(jpg|png)$"
},
"// landing pages for forecasting systems",
{
"type": "move",
"src": "site/systems/",
"dst": "/var/www/html/systems/",
"match": "^.*\\.html$",
"add-header-comment": true
}
]
}