config_research.json.example 1.13 KB
Newer Older
1 2
{
    "LOCAL_HOST": {
3
        "research_roots": "...",
4 5 6 7
        "custom_programs": {
            "@path_to_binaries@": ["@bin1@", "@bin2@", ...],
            ...
        }
8 9 10
        "custom_commands": {
            "@command_name@": "@command itself@"
        },
11 12 13 14 15 16 17
    },
    "REMOTE_HOSTS": {
        "@remote_host_sid@": {
            "ssh_host": "...",
            "max_cores": ...,
            "username": "...",
            "password": "...",
18
            "pkey": "...",
19 20 21 22 23 24
            "research_path": "...",
            "env_programs": ["@bin1@", "@bin1@", ...],
            "custom_programs": {
                "@path_to_binaries@": ["@bin1@", "@bin2@", ...],
                ...
            },
25 26 27
            "custom_commands": {
                "@command_name@": "@command itself@"
            },
28 29 30 31 32 33 34 35 36 37 38 39
            "sge_template_name": "...",
            "job_setter": "...",
            "job_finished_checker": "..."
       },
        ...
    },
    "RESEARCH": {
        "@research_sid@": "@research_full_name@",
        ...
    },
    "RESEARCH_PROPS": {
        ...
40
    },
41
    "PERSONAL_TASK_SHIFT": 0,
42 43
    "TEMPLATES_PATH": "...",
    "MEETINGS_PATH": "..."
44
}