Fix datepicker arrows style on hover
[cds-indico.git] / fabfile.conf
blob0a1f41ce8636df0a358f2a526cc8d3c86bf90c9d
1 import os
3 build_dir = '/tmp/indico-build/'
5 ext_dirname = 'ext_modules'
6 target_dirname = os.path.join('indico', 'htdocs')
7 pyenv_dir = os.path.expanduser(os.path.join('~', '.pyenv'))
9 system_node = False
10 node_version = '0.10.24'
11 node_env_dirname = os.path.join('ext_modules', 'node_env')
13 py_versions = ['2.6.9', '2.7']
15 github = {
16     'user': 'your-username',
17     'org': 'indico',
18     'repo': 'indico',
19     'auth_token': 'your-access-token',
21     # What do to in case release exists
22     # True: overwrite, False: do not overwrite, None: ask
23     'overwrite': None
25 github['upstream'] = "https://github.com/{0}/{1}.git".format(github['org'], github['repo'])
27 ssh = {
28     'host': 'remote-server.example.com',
29     'port': '22',
30     'user': 'root',
31     'key': '~/.ssh/id_rsa',
32     'dest_dir': '/path/on/remote/server'
35 unverified = ['pyPdf']
37 system_node = False