initial_runnables.json

 1// Static runnables configuration.
 2//
 3// Example:
 4// {
 5//     "version": "1",
 6//     "runnables": [
 7//         {
 8//             "label": "human-readable label for UI",
 9//             "command": "bash",
10//             // rest of the parameters are optional
11//             "args": ["-c", "for i in {1..10}; do echo \"Second $i\"; sleep 1; done"],
12//             // Env overrides for the command, will be appended to the terminal's environment from the settings.
13//             "env": { "foo": "bar" },
14//             // Current working directory to spawn the command into, defaults to current project root.
15//             "cwd": "/path/to/working/directory",
16//             // Whether to use a new terminal tab or reuse the existing one to spawn the process, defaults to `false`.
17//             "use_new_terminal": false,
18//             // Whether to allow multiple instances of the same runnable to be run, or rather wait for the existing ones to finish, defaults to `false`.
19//             "allow_concurrent_runs": false
20//         }
21//     ]
22// }
23//
24{
25    "version": "1",
26    "runnables": []
27}