| author | bastiena |
| Mon, 24 Sep 2012 13:22:02 +0200 | |
| changeset 122 | 5362e76b7f24 |
| parent 71 | 2220313b692e |
| permissions | -rw-r--r-- |
| 64 | 1 |
from fabric.api import env |
2 |
||
3 |
env.hosts = ['iri@web.iri.centrepompidou.fr'] |
|
4 |
||
5 |
env.web_group = 'www-data' |
|
6 |
||
7 |
env.base_export_path = "~/tmp" |
|
8 |
env.export_prefix = "idill" |
|
| 66 | 9 |
env.remote_web_path = "/iridata/www/iri-research/labs/idill/" |
| 64 | 10 |
env.web_rsync_filters = [ |
11 |
"+ core", |
|
| 66 | 12 |
"- /doc/", |
|
71
2220313b692e
clean virtualenv creation and sync config
ymh <ymh.work@gmail.com>
parents:
66
diff
changeset
|
13 |
"P src/config_kinect.json", |
|
2220313b692e
clean virtualenv creation and sync config
ymh <ymh.work@gmail.com>
parents:
66
diff
changeset
|
14 |
"P src/config_souris.json", |
| 64 | 15 |
"P .htpasswd", |
16 |
"P .htaccess", |
|
17 |
"P robots.txt", |
|
18 |
"P crossdomain.xml", |
|
19 |
] |
|
20 |
env.web_relaunch_cmd = "apache2ctl restart" |
|
21 |