-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathworkspace.example.yml
More file actions
executable file
·173 lines (169 loc) · 4.88 KB
/
workspace.example.yml
File metadata and controls
executable file
·173 lines (169 loc) · 4.88 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
# Vectorizer Workspace Configuration Example
# Copy this file to workspace.yml and customize for your project
global_settings:
file_watcher:
auto_discovery: true
enable_auto_update: true
exclude_patterns: []
hot_reload: true
watch_paths:
- /workspace # Root path to watch
projects:
# Example: Single project
- name: my-project
path: /workspace/my-project
description: My Project - Description
collections:
- name: my-project-source
description: Source code
include_patterns:
- "src/**/*.rs"
- "src/**/*.toml"
- "**/*.json"
exclude_patterns:
- "target/**"
- "**/*.log"
- name: my-project-docs
description: Documentation
include_patterns:
- "docs/**/*.md"
- "*.md"
exclude_patterns:
- "node_modules/**"
# ============================================================================
# HiveLLM Monorepo Example (when mounting ../../ as /workspace in Docker)
# ============================================================================
#
# global_settings:
# file_watcher:
# auto_discovery: true
# enable_auto_update: true
# exclude_patterns: []
# hot_reload: true
# watch_paths:
# - /workspace
#
# projects:
# - name: vectorizer
# path: /workspace/vectorizer
# description: Vectorizer - Vector database and search engine
# collections:
# - name: vectorizer-source
# description: Vectorizer Rust source code
# include_patterns:
# - "src/**/*.rs"
# - "**/*.toml"
# - "build.rs"
# exclude_patterns:
# - "target/**"
# - "data/**"
# - "logs/**"
#
# - name: vectorizer-docs
# description: Vectorizer documentation
# include_patterns:
# - "docs/**/*.md"
# - "*.md"
# exclude_patterns:
# - "target/**"
#
# - name: governance
# path: /workspace/governance
# description: Governance System - Project management
# collections:
# - name: governance-source
# description: Governance TypeScript source code
# include_patterns:
# - "src/**/*.ts"
# - "src/**/*.js"
# - "**/*.json"
# - "scripts/**/*"
# exclude_patterns:
# - "node_modules/**"
# - "dist/**"
# - "*.db*"
#
# - name: governance-docs
# description: Governance documentation
# include_patterns:
# - "*.md"
# - "views/**/*.md"
# exclude_patterns:
# - "node_modules/**"
#
# - name: task-queue
# path: /workspace/task-queue
# description: Task Queue - Distributed task processing
# collections:
# - name: task-queue-source
# description: Task Queue Rust source code
# include_patterns:
# - "src/**/*.rs"
# - "cli/**/*.rs"
# - "**/*.toml"
# exclude_patterns:
# - "target/**"
# - "data/**"
# - "logs/**"
#
# - name: task-queue-docs
# description: Task Queue documentation
# include_patterns:
# - "docs/**/*.md"
# - "*.md"
# exclude_patterns:
# - "target/**"
#
# - name: task-queue-sdk-typescript
# description: Task Queue TypeScript SDK
# include_patterns:
# - "sdks/typescript/**/*.ts"
# - "sdks/typescript/**/*.js"
# - "sdks/typescript/**/*.json"
# exclude_patterns:
# - "sdks/typescript/node_modules/**"
# - "sdks/typescript/coverage/**"
#
# - name: transmutation
# path: /workspace/transmutation
# description: Transmutation - Document conversion engine
# collections:
# - name: transmutation-source
# description: Transmutation Rust source code
# include_patterns:
# - "src/**/*.rs"
# - "examples/**/*.rs"
# - "**/*.toml"
# - "build.rs"
# exclude_patterns:
# - "target/**"
# - "data/**"
#
# - name: transmutation-docs
# description: Transmutation documentation
# include_patterns:
# - "docs/**/*.md"
# - "*.md"
# exclude_patterns:
# - "target/**"
#
# - name: umicp
# path: /workspace/umicp
# description: Universal Model Interface Communication Protocol
# collections:
# - name: umicp-cpp
# description: UMICP C++ implementation
# include_patterns:
# - "cpp/**/*.cpp"
# - "cpp/**/*.h"
# - "cpp/**/*.md"
# exclude_patterns:
# - "cpp/build/**"
#
# - name: umicp-docs
# description: UMICP documentation
# include_patterns:
# - "docs/**/*.md"
# - "*.md"
# exclude_patterns:
# - "bindings/**/target/**"