-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtask-runner.php
37 lines (30 loc) · 1.08 KB
/
task-runner.php
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
<?php
return [
// The default timeout for a task in seconds
'default_timeout' => 60,
// The view location for the tasks.
'task_views' => 'tasks',
// The connection to use for the tasks.
'connections' => [
// 'production' => [
// 'host' => '',
// 'port' => '',
// 'username' => '',
// 'private_key' => '',
// 'private_key_path' => '',
// 'passphrase' => '',
// 'script_path' => '',
// ],
],
// Default EOF value. Leave empty to generate a dynamic one.
'eof' => '',
// The temporary directory to store the private keys and scripts. Leave empty to use the system's temporary directory.
'temporary_directory' => '',
// Store the fakes in a file. This is useful for testing.
'persistent_fake' => [
'enabled' => env('TASK_RUNNER_PERSISTENT_FAKE', false),
'storage_root' => storage_path('framework/testing/task-runner'),
],
// The connection timeout for connecting to a remote server in seconds.
'connection_timeout' => 10,
];