forked from grokability/snipe-it
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathboost.php
More file actions
111 lines (94 loc) · 3.79 KB
/
Copy pathboost.php
File metadata and controls
111 lines (94 loc) · 3.79 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<?php
declare(strict_types=1);
return [
/*
|--------------------------------------------------------------------------
| Boost Master Switch
|--------------------------------------------------------------------------
|
| This option may be used to disable all Boost functionality which will
| prevent Boost's routes from being registered and will also disable
| Boost's browser logging functionality from reading or operating.
|
*/
'enabled' => env('BOOST_ENABLED', true),
/*
|--------------------------------------------------------------------------
| Boost Project Rules
|--------------------------------------------------------------------------
|
| Project rules let agents write decisions, traps and standing constraints
| as tracked Markdown in /.ai/rules/. Enabling "scoped_guidelines" also
| moves path-scoped guidelines to .ai/rules/boost/ - it stays opt-in.
|
*/
'rules' => [
'enabled' => true,
'scoped_guidelines' => true,
],
/*
|--------------------------------------------------------------------------
| Excluded Guidelines
|--------------------------------------------------------------------------
|
| Any guidelines listed here will be excluded whenever Boost composes your
| AI guidelines during boost:install or boost:update. Entries match the
| names shown within the boost:install summary, e.g. "livewire/core".
|
*/
'guidelines' => [
'exclude' => [],
],
/*
|--------------------------------------------------------------------------
| Excluded Skills
|--------------------------------------------------------------------------
|
| Any skills listed here will not be installed or synced to your agents
| by boost:install and boost:update, e.g. "fluxui-development". Your
| own skills within the ".ai/skills" directory are never excluded.
|
*/
'skills' => [
'exclude' => [],
],
/*
|--------------------------------------------------------------------------
| Boost Executables Paths
|--------------------------------------------------------------------------
|
| These options allow you to specify custom paths for the executables that
| Boost uses. While configured, they take precedence over the automatic
| discovery mechanism. When undefined, your system defaults are used.
|
*/
'executable_paths' => [
'php' => env('BOOST_PHP_EXECUTABLE_PATH'),
'composer' => env('BOOST_COMPOSER_EXECUTABLE_PATH'),
'npm' => env('BOOST_NPM_EXECUTABLE_PATH'),
'vendor_bin' => env('BOOST_VENDOR_BIN_EXECUTABLE_PATH'),
'current_directory' => env('BOOST_CURRENT_DIRECTORY_EXECUTABLE_PATH'),
],
/*
|--------------------------------------------------------------------------
| Boost Browser Logs Watcher
|--------------------------------------------------------------------------
|
| The following option may be used to enable or disable the browser logs
| watcher feature within Laravel Boost. The log watcher will read any
| errors within the browser's console to give Boost better context.
|
*/
'browser_logs_watcher' => env('BOOST_BROWSER_LOGS_WATCHER', true),
/*
|--------------------------------------------------------------------------
| Browser Log Levels
|--------------------------------------------------------------------------
|
| This option defines which browser console log levels will be captured by
| Boost's browser logger. You may trim this list down to ['error'] when
| warnings, info, and debug messages become too noisy to be relevant.
|
*/
'browser_log_levels' => explode(',', env('BOOST_BROWSER_LOG_LEVELS', 'error,warning,info,debug')),
];