-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathllms.config.ts
More file actions
52 lines (46 loc) · 1.9 KB
/
llms.config.ts
File metadata and controls
52 lines (46 loc) · 1.9 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
/**
* Configuration for llms.txt generation.
*
* This file contains project-level metadata that can't be specified
* in individual documentation files' frontmatter.
*
* Individual pages control their inclusion via frontmatter:
* llms: true (default) | "optional" | false
* llms_description: "Short description for LLM context"
*/
export const llmsConfig = {
/**
* Project name — used as H1 heading in llms.txt
*/
title: 'Buggregator',
/**
* Brief project summary — rendered as blockquote after H1
*/
summary:
'Buggregator is a free, open-source debugging server. Debug everything — install nothing. One docker run (or a single binary) gives you exceptions, dumps, emails, profiling, and logs in a single real-time UI. Written in Go with an embedded SQLite database. Runs beside your app, not inside it.',
/**
* Key facts about the project — rendered as a list before doc sections.
* Keep concise and factual, oriented at what an LLM needs to know.
*/
details: [
'Install: `docker run --pull always -p 127.0.0.1:8000:8000 -p 127.0.0.1:1025:1025 -p 127.0.0.1:9912:9912 ghcr.io/buggregator/server:latest`',
'GitHub: https://github.com/buggregator/server',
'Lightweight CLI alternative (no Docker): `composer require --dev buggregator/trap`',
'JetBrains IDE plugin: https://plugins.jetbrains.com/plugin/26344-buggregator',
'Supported integrations: Sentry SDK, Symfony VarDumper, Monolog, Spatie Ray, Inspector, SMTP, HTTP dumps, XHProf, SMS',
'Works with: Laravel, Symfony, Spiral, WordPress, Yii, Drupal — and JS, Python, Ruby, Go via Sentry SDK',
],
/**
* Base URL for documentation links in llms.txt.
* Page paths from frontmatter are appended to this.
*/
baseUrl: '',
/**
* Section name for documentation pages
*/
docsSection: 'Docs',
/**
* Section name for pages with llms: "optional"
*/
optionalSection: 'Optional',
}