-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
407 lines (388 loc) · 19 KB
/
Copy path.env.example
File metadata and controls
407 lines (388 loc) · 19 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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
# Generated by npm run docs:generate from src/configMetadata.js. Do not add live values here.
# Create .env with: install -m 600 .env.example .env
# Fill private identifiers and secrets only in the ignored, owner-only .env file.
# Discord access and routing.
# Identifiers are intentionally blank in generated examples.
# Discord bot token from the Developer Portal.
DISCORD_TOKEN=
# Discord application/client ID.
DISCORD_APPLICATION_ID=
# Discord server ID to which the bot is locked.
DISCORD_GUILD_ID=
# Comma-separated allowlist of support and test channel IDs.
DISCORD_ALLOWED_CHANNEL_IDS=
# Comma-separated channel IDs routed to the CMI context.
DISCORD_CMI_CHANNEL_IDS=
# Comma-separated channel IDs routed to the Jobs context.
DISCORD_JOBS_CHANNEL_IDS=
# Comma-separated channel IDs routed to the SVIS context.
DISCORD_SVIS_CHANNEL_IDS=
# Comma-separated channel IDs routed to the MFM context.
DISCORD_MFM_CHANNEL_IDS=
# Comma-separated channel IDs routed to the TryMe context.
DISCORD_TRYME_CHANNEL_IDS=
# Comma-separated channel IDs routed to the TradeMe context.
DISCORD_TRADEME_CHANNEL_IDS=
# Comma-separated channel IDs routed to the Residence context.
DISCORD_RESIDENCE_CHANNEL_IDS=
# Comma-separated channel IDs routed to the BottledExp context.
DISCORD_BOTTLEDEXP_CHANNEL_IDS=
# Comma-separated test channel IDs.
DISCORD_TEST_CHANNEL_IDS=
# Plugin context used by test channels until overridden.
DISCORD_TEST_DEFAULT_CONTEXT=cmi
# Comma-separated role IDs allowed to use lookup commands.
ALLOWED_ROLE_IDS=
# Comma-separated role IDs allowed to use admin commands.
ADMIN_ROLE_IDS=
# Comma-separated role IDs allowed to use AI-backed options. Required when AI_ENABLED=true; otherwise falls back to ADMIN_ROLE_IDS.
AI_ROLE_IDS=
# Private channel that receives aggregate data-health alerts.
DISCORD_ADMIN_ALERT_CHANNEL_ID=
# Zero-cost local AI.
# Only a loopback Ollama service and local model are supported. External and paid providers fail closed.
# Enable grounded local answers and summaries with deterministic fallback.
AI_ENABLED=true
# External AI providers are unsupported and must remain disabled.
AI_EXTERNAL_PROVIDERS_ENABLED=false
# Hard paid-provider budget; this release requires exactly zero.
AI_PAID_BUDGET_USD=0
# Use the configured local Ollama model when available.
OLLAMA_ENABLED=true
# Loopback-only Ollama HTTP address. Remote addresses are rejected.
OLLAMA_BASE_URL=http://127.0.0.1:11434
# Installed local Ollama model; cloud model names are rejected.
OLLAMA_MODEL=qwen3:8b
# Private aggregate-only local AI usage state.
AI_USAGE_STATE_PATH=logs/ai-usage.json
# Maximum local generation attempts per UTC day; zero disables this resource limit.
AI_DAILY_REQUEST_LIMIT=50
# Maximum local generation attempts per UTC month; zero disables this resource limit.
AI_MONTHLY_REQUEST_LIMIT=1000
# Maximum private grounded-answer question length.
AI_MAX_QUESTION_LENGTH=320
# Maximum safe indexed evidence snippets sent to the local model.
AI_MAX_EVIDENCE_ITEMS=6
# Maximum characters retained per redacted evidence snippet.
AI_MAX_EVIDENCE_CHARS=1000
# Maximum local model output tokens per request.
AI_MAX_OUTPUT_TOKENS=350
# Hard timeout for local answer generation.
AI_REQUEST_TIMEOUT_SECONDS=90
# Hard timeout for local readiness checks.
AI_STATUS_TIMEOUT_SECONDS=2
# Search and display.
# Prefix shown before repository-relative lookup paths.
DISPLAY_PATH_PREFIX=~/plugins
# Default number of lookup results.
DEFAULT_RESULT_LIMIT=3
# Maximum number of cache profiles loaded concurrently.
CACHE_LOAD_CONCURRENCY=4
# Maximum repeated-search results retained in the in-memory LRU cache; zero disables it.
SEARCH_RESULT_CACHE_MAX_ENTRIES=256
# Reuse private compact derived indexes when source content and index format match.
DERIVED_INDEX_ENABLED=true
# Dedicated repository-relative directory under logs/ for rebuildable derived indexes.
DERIVED_INDEX_PATH=logs/derived-indexes
# Maximum compressed size of one derived profile index.
DERIVED_INDEX_MAX_ARTIFACT_MB=32
# Link lookup results to the exact deployed source revision.
SOURCE_LINKS_ENABLED=true
# Public HTTPS GitHub repository used for pinned source links.
SOURCE_REPOSITORY_URL=https://github.com/mrfdev/CMIBot
# Minutes before interactive result controls expire.
PAGINATION_TTL_MINUTES=10
# Maximum in-memory interactive result sessions.
PAGINATION_MAX_SESSIONS=200
# Maximum ranked results retained per interactive session.
PAGINATION_MAX_RESULTS=100
# Repository-relative path to plugin-scoped search synonyms.
SEARCH_SYNONYMS_PATH=data/search-synonyms.json
# Version checks.
# Repository-relative clean-server version catalog.
VERSION_CATALOG_PATH=data/versions.json
# Repository-relative persistent last-known upstream state.
VERSION_STATE_PATH=logs/upstream-versions.json
# Enable live upstream version checks.
VERSION_CHECK_ENABLED=true
# Hours between scheduled upstream checks.
VERSION_CHECK_INTERVAL_HOURS=12
# Timeout for each upstream request.
VERSION_CHECK_TIMEOUT_SECONDS=8
# Maximum attempts for a temporary upstream failure.
VERSION_CHECK_MAX_ATTEMPTS=3
# Initial upstream retry delay in milliseconds.
VERSION_CHECK_RETRY_BASE_MS=250
# Maximum upstream retry delay in milliseconds.
VERSION_CHECK_RETRY_MAX_MS=2000
# Consecutive failed refreshes before a resource circuit opens.
VERSION_CHECK_CIRCUIT_FAILURE_THRESHOLD=3
# Cooldown before an open resource circuit permits a recovery probe.
VERSION_CHECK_CIRCUIT_COOLDOWN_SECONDS=300
# Paper version line checked upstream.
PAPER_VERSION=26.2
# Comma-separated accepted Paper release channels.
PAPER_VERSION_CHANNELS=STABLE
# Rate limits and cooldowns.
# Commands allowed per user in each rate window.
COMMAND_USER_RATE_LIMIT=10
# Commands allowed per channel in each rate window.
COMMAND_CHANNEL_RATE_LIMIT=30
# Commands allowed globally in each rate window.
COMMAND_GLOBAL_RATE_LIMIT=100
# Sliding command-rate window in seconds.
COMMAND_RATE_WINDOW_SECONDS=30
# Autocomplete and result-control interactions allowed per user in each rate window.
INTERACTION_USER_RATE_LIMIT=20
# Authorized autocomplete and result-control interactions allowed per channel in each rate window.
INTERACTION_CHANNEL_RATE_LIMIT=100
# Authorized autocomplete and result-control interactions allowed globally in each rate window.
INTERACTION_GLOBAL_RATE_LIMIT=200
# Sliding autocomplete and result-control rate window in seconds.
INTERACTION_RATE_WINDOW_SECONDS=10
# Maximum concurrent authorized autocomplete and result-control interactions.
INTERACTION_MAX_CONCURRENT=8
# Per-user lookup cooldown.
LOOKUP_COOLDOWN_SECONDS=3
# Per-user AI summary cooldown.
SUMMARY_COOLDOWN_SECONDS=15
# Per-user grounded-answer cooldown.
AI_QUESTION_COOLDOWN_SECONDS=20
# Global admin debug cooldown.
DEBUG_COOLDOWN_SECONDS=10
# Global admin reload cooldown.
RELOAD_COOLDOWN_SECONDS=30
# Coalescing window for repeated rate-limit audit entries.
RATE_LIMIT_AUDIT_COOLDOWN_SECONDS=30
# Admin data alerts.
# Alerts are disabled unless DISCORD_ADMIN_ALERT_CHANNEL_ID is configured.
# Minutes between aggregate data-health checks.
ADMIN_ALERT_INTERVAL_MINUTES=15
# Hours before repeating an unchanged alert.
ADMIN_ALERT_REMINDER_HOURS=24
# Maximum clean-snapshot age before an alert.
CLEAN_DATA_STALE_HOURS=48
# Maximum upstream-check age before an alert.
UPSTREAM_CHECK_STALE_HOURS=24
# Input safety.
# Minimum normalized query length.
QUERY_MIN_LENGTH=2
# Maximum normalized query length.
QUERY_MAX_LENGTH=80
# Comma-separated exact queries rejected as too broad.
QUERY_BLOCKLIST=a,an,and,for,from,in,of,on,or,the,to
# Comma-separated short queries exempt from minimum length.
QUERY_ALLOWLIST=rt,rtp,tp,msg,r
# Expose detailed validation reasons to users.
QUERY_DEBUG_ERRORS=false
# Audit logging.
# Repository-relative JSONL usage-audit path.
AUDIT_LOG_PATH=logs/cmibot-usage.jsonl
# Maximum active audit-log size before rotation.
AUDIT_LOG_MAX_SIZE_MB=10
# Maximum retained audit-log archives.
AUDIT_LOG_MAX_FILES=5
# Bounded service logging.
# Maximum size of each active structured service-log stream.
SERVICE_LOG_MAX_SIZE_MB=10
# Maximum archives retained for each service-log stream.
SERVICE_LOG_MAX_FILES=5
# Minimum free disk reserve below which service logs stop growing.
SERVICE_LOG_MIN_FREE_MB=256
# Metrics.
# Interval for privacy-safe aggregate metrics snapshots; use 0 to disable periodic snapshots.
METRICS_LOG_INTERVAL_MINUTES=5
# Shared CMILib profile scopes.
# Shared profiles are indexed once and composed into supporting plugin contexts.
# Comma-separated include globs for the config profile.
CMILIB_LOOKUP_INCLUDE_GLOBS=CMILibPlugin/CMILib/config.yml
# Comma-separated exclude globs for the config profile.
CMILIB_LOOKUP_EXCLUDE_GLOBS=
# Comma-separated include globs for the language profile.
CMILIB_LANGUAGE_INCLUDE_GLOBS=CMILibPlugin/CMILib/Translations/**/*_EN.yml
# Comma-separated exclude globs for the language profile.
CMILIB_LANGUAGE_EXCLUDE_GLOBS=
# Comma-separated include globs for the placeholder profile.
CMILIB_PLACEHOLDER_INCLUDE_GLOBS=CMILibPlugin/data/generated-placeholders.log
# Comma-separated exclude globs for the placeholder profile.
CMILIB_PLACEHOLDER_EXCLUDE_GLOBS=
# CMI profile scopes.
# Include and exclude globs are always resolved inside the repository workspace.
# Comma-separated include globs for the config profile.
LOOKUP_INCLUDE_GLOBS=CMIPlugin/CMI/config.yml,CMIPlugin/CMI/Settings/**/*.yml
# Comma-separated exclude globs for the config profile.
LOOKUP_EXCLUDE_GLOBS=**/Translations/**,**/DatabaseBackups/**,**/FileBackups/**,**/Logs/**,**/moneyLog/**,**/sellLogs/**
# Comma-separated include globs for the language profile.
LANGLOOKUP_INCLUDE_GLOBS=CMIPlugin/CMI/Translations/**/Locale_EN.yml
# Comma-separated exclude globs for the language profile.
LANGLOOKUP_EXCLUDE_GLOBS=
# Comma-separated include globs for the placeholder profile.
PLACEHOLDER_INCLUDE_GLOBS=CMIPlugin/data/placeholders.log,CMIPlugin/data/generated-placeholders.log
# Comma-separated exclude globs for the placeholder profile.
PLACEHOLDER_EXCLUDE_GLOBS=
# Comma-separated include globs for the material profile.
MATERIAL_INCLUDE_GLOBS=CMIPlugin/data/materials.log
# Comma-separated exclude globs for the material profile.
MATERIAL_EXCLUDE_GLOBS=
# Comma-separated include globs for the command profile.
COMMAND_INCLUDE_GLOBS=CMIPlugin/data/commands.log,CMIPlugin/data/generated-commands.log
# Comma-separated exclude globs for the command profile.
COMMAND_EXCLUDE_GLOBS=
# Comma-separated include globs for the permission profile.
PERMISSION_INCLUDE_GLOBS=CMIPlugin/data/permissions.log,CMIPlugin/data/cmdperms.log,CMIPlugin/data/generated-permissions.log
# Comma-separated exclude globs for the permission profile.
PERMISSION_EXCLUDE_GLOBS=
# Comma-separated include globs for the faq profile.
FAQ_INCLUDE_GLOBS=CMIPlugin/data/faq.log
# Comma-separated exclude globs for the faq profile.
FAQ_EXCLUDE_GLOBS=
# Comma-separated include globs for the tabcomplete profile.
TABCOMPLETE_INCLUDE_GLOBS=CMIPlugin/data/tabcompletes.log
# Comma-separated exclude globs for the tabcomplete profile.
TABCOMPLETE_EXCLUDE_GLOBS=
# Jobs profile scopes.
# Include and exclude globs are always resolved inside the repository workspace.
# Comma-separated include globs for the config profile.
JOBS_LOOKUP_INCLUDE_GLOBS=JobsPlugin/*.yml,JobsPlugin/jobs/**/*.yml
# Comma-separated exclude globs for the config profile.
JOBS_LOOKUP_EXCLUDE_GLOBS=JobsPlugin/locale/**,JobsPlugin/TranslatableWords/**,JobsPlugin/data/**,JobsPlugin/Signs.yml,JobsPlugin/activeBoosts.yml,JobsPlugin/blockOwnerShips.yml
# Comma-separated include globs for the language profile.
JOBS_LANGUAGE_INCLUDE_GLOBS=JobsPlugin/locale/messages_en.yml,JobsPlugin/TranslatableWords/Words_en.yml
# Comma-separated exclude globs for the language profile.
JOBS_LANGUAGE_EXCLUDE_GLOBS=
# Comma-separated include globs for the placeholder profile.
JOBS_PLACEHOLDER_INCLUDE_GLOBS=JobsPlugin/data/placeholders.log,JobsPlugin/data/generated-placeholders.log
# Comma-separated exclude globs for the placeholder profile.
JOBS_PLACEHOLDER_EXCLUDE_GLOBS=
# Comma-separated include globs for the command profile.
JOBS_COMMAND_INCLUDE_GLOBS=JobsPlugin/data/commands.log,JobsPlugin/data/generated-commands.log
# Comma-separated exclude globs for the command profile.
JOBS_COMMAND_EXCLUDE_GLOBS=
# Comma-separated include globs for the permission profile.
JOBS_PERMISSION_INCLUDE_GLOBS=JobsPlugin/data/permissions.log,JobsPlugin/data/generated-permissions.log
# Comma-separated exclude globs for the permission profile.
JOBS_PERMISSION_EXCLUDE_GLOBS=
# Comma-separated include globs for the faq profile.
JOBS_FAQ_INCLUDE_GLOBS=JobsPlugin/data/faq.log,JobsPlugin/data/faq/*.md
# Comma-separated exclude globs for the faq profile.
JOBS_FAQ_EXCLUDE_GLOBS=
# SVIS profile scopes.
# Include and exclude globs are always resolved inside the repository workspace.
# Comma-separated include globs for the config profile.
SVIS_LOOKUP_INCLUDE_GLOBS=SVISPlugin/config.yml
# Comma-separated exclude globs for the config profile.
SVIS_LOOKUP_EXCLUDE_GLOBS=
# Comma-separated include globs for the language profile.
SVIS_LANGUAGE_INCLUDE_GLOBS=SVISPlugin/Locale_EN.yml
# Comma-separated exclude globs for the language profile.
SVIS_LANGUAGE_EXCLUDE_GLOBS=
# Comma-separated include globs for the command profile.
SVIS_COMMAND_INCLUDE_GLOBS=SVISPlugin/data/commands.log,SVISPlugin/data/generated-commands.log
# Comma-separated exclude globs for the command profile.
SVIS_COMMAND_EXCLUDE_GLOBS=
# Comma-separated include globs for the permission profile.
SVIS_PERMISSION_INCLUDE_GLOBS=SVISPlugin/data/permissions.log,SVISPlugin/data/generated-permissions.log
# Comma-separated exclude globs for the permission profile.
SVIS_PERMISSION_EXCLUDE_GLOBS=
# Residence profile scopes.
# Include and exclude globs are always resolved inside the repository workspace.
# Comma-separated include globs for the config profile.
RESIDENCE_LOOKUP_INCLUDE_GLOBS=ResidencePlugin/config.yml,ResidencePlugin/groups.yml,ResidencePlugin/flags.yml,ResidencePlugin/ShopVotes.yml
# Comma-separated exclude globs for the config profile.
RESIDENCE_LOOKUP_EXCLUDE_GLOBS=
# Comma-separated include globs for the language profile.
RESIDENCE_LANGUAGE_INCLUDE_GLOBS=ResidencePlugin/Language/English.yml
# Comma-separated exclude globs for the language profile.
RESIDENCE_LANGUAGE_EXCLUDE_GLOBS=
# Comma-separated include globs for the placeholder profile.
RESIDENCE_PLACEHOLDER_INCLUDE_GLOBS=ResidencePlugin/data/placeholders.log,ResidencePlugin/data/generated-placeholders.log
# Comma-separated exclude globs for the placeholder profile.
RESIDENCE_PLACEHOLDER_EXCLUDE_GLOBS=
# Comma-separated include globs for the command profile.
RESIDENCE_COMMAND_INCLUDE_GLOBS=ResidencePlugin/data/commands.log,ResidencePlugin/data/generated-commands.log
# Comma-separated exclude globs for the command profile.
RESIDENCE_COMMAND_EXCLUDE_GLOBS=
# Comma-separated include globs for the permission profile.
RESIDENCE_PERMISSION_INCLUDE_GLOBS=ResidencePlugin/data/permissions.log,ResidencePlugin/data/generated-permissions.log
# Comma-separated exclude globs for the permission profile.
RESIDENCE_PERMISSION_EXCLUDE_GLOBS=
# MFM profile scopes.
# Include and exclude globs are always resolved inside the repository workspace.
# Comma-separated include globs for the config profile.
MFM_LOOKUP_INCLUDE_GLOBS=MFMPlugin/config.yml
# Comma-separated exclude globs for the config profile.
MFM_LOOKUP_EXCLUDE_GLOBS=
# Comma-separated include globs for the language profile.
MFM_LANGUAGE_INCLUDE_GLOBS=MFMPlugin/Locale/Locale_EN.yml
# Comma-separated exclude globs for the language profile.
MFM_LANGUAGE_EXCLUDE_GLOBS=
# Comma-separated include globs for the command profile.
MFM_COMMAND_INCLUDE_GLOBS=MFMPlugin/data/generated-commands.log
# Comma-separated exclude globs for the command profile.
MFM_COMMAND_EXCLUDE_GLOBS=
# Comma-separated include globs for the permission profile.
MFM_PERMISSION_INCLUDE_GLOBS=MFMPlugin/data/generated-permissions.log
# Comma-separated exclude globs for the permission profile.
MFM_PERMISSION_EXCLUDE_GLOBS=
# TryMe profile scopes.
# Include and exclude globs are always resolved inside the repository workspace.
# Comma-separated include globs for the config profile.
TRYME_LOOKUP_INCLUDE_GLOBS=TryMePlugin/*.yml
# Comma-separated exclude globs for the config profile.
TRYME_LOOKUP_EXCLUDE_GLOBS=TryMePlugin/Locale_EN.yml,TryMePlugin/Signs.yml
# Comma-separated include globs for the language profile.
TRYME_LANGUAGE_INCLUDE_GLOBS=TryMePlugin/Locale_EN.yml
# Comma-separated exclude globs for the language profile.
TRYME_LANGUAGE_EXCLUDE_GLOBS=
# Comma-separated include globs for the placeholder profile.
TRYME_PLACEHOLDER_INCLUDE_GLOBS=TryMePlugin/data/generated-placeholders.log
# Comma-separated exclude globs for the placeholder profile.
TRYME_PLACEHOLDER_EXCLUDE_GLOBS=
# Comma-separated include globs for the command profile.
TRYME_COMMAND_INCLUDE_GLOBS=TryMePlugin/data/generated-commands.log
# Comma-separated exclude globs for the command profile.
TRYME_COMMAND_EXCLUDE_GLOBS=
# Comma-separated include globs for the permission profile.
TRYME_PERMISSION_INCLUDE_GLOBS=TryMePlugin/data/generated-permissions.log
# Comma-separated exclude globs for the permission profile.
TRYME_PERMISSION_EXCLUDE_GLOBS=
# TradeMe profile scopes.
# Include and exclude globs are always resolved inside the repository workspace.
# Comma-separated include globs for the config profile.
TRADEME_LOOKUP_INCLUDE_GLOBS=TradeMePlugin/config.yml
# Comma-separated exclude globs for the config profile.
TRADEME_LOOKUP_EXCLUDE_GLOBS=
# Comma-separated include globs for the language profile.
TRADEME_LANGUAGE_INCLUDE_GLOBS=TradeMePlugin/Locale_EN.yml
# Comma-separated exclude globs for the language profile.
TRADEME_LANGUAGE_EXCLUDE_GLOBS=
# Comma-separated include globs for the placeholder profile.
TRADEME_PLACEHOLDER_INCLUDE_GLOBS=TradeMePlugin/data/generated-placeholders.log
# Comma-separated exclude globs for the placeholder profile.
TRADEME_PLACEHOLDER_EXCLUDE_GLOBS=
# Comma-separated include globs for the command profile.
TRADEME_COMMAND_INCLUDE_GLOBS=TradeMePlugin/data/generated-commands.log
# Comma-separated exclude globs for the command profile.
TRADEME_COMMAND_EXCLUDE_GLOBS=
# Comma-separated include globs for the permission profile.
TRADEME_PERMISSION_INCLUDE_GLOBS=TradeMePlugin/data/generated-permissions.log
# Comma-separated exclude globs for the permission profile.
TRADEME_PERMISSION_EXCLUDE_GLOBS=
# BottledExp profile scopes.
# Include and exclude globs are always resolved inside the repository workspace.
# Comma-separated include globs for the config profile.
BOTTLEDEXP_LOOKUP_INCLUDE_GLOBS=BottledExpPlugin/config.yml,BottledExpPlugin/recipes.yml
# Comma-separated exclude globs for the config profile.
BOTTLEDEXP_LOOKUP_EXCLUDE_GLOBS=
# Comma-separated include globs for the language profile.
BOTTLEDEXP_LANGUAGE_INCLUDE_GLOBS=BottledExpPlugin/Locale_EN.yml
# Comma-separated exclude globs for the language profile.
BOTTLEDEXP_LANGUAGE_EXCLUDE_GLOBS=
# Comma-separated include globs for the command profile.
BOTTLEDEXP_COMMAND_INCLUDE_GLOBS=BottledExpPlugin/data/generated-commands.log
# Comma-separated exclude globs for the command profile.
BOTTLEDEXP_COMMAND_EXCLUDE_GLOBS=
# Comma-separated include globs for the permission profile.
BOTTLEDEXP_PERMISSION_INCLUDE_GLOBS=BottledExpPlugin/data/generated-permissions.log
# Comma-separated exclude globs for the permission profile.
BOTTLEDEXP_PERMISSION_EXCLUDE_GLOBS=