You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A documentation site generator configuration that aggregates and publishes documentation from multiple Git repositories into a unified, searchable documentation website for the Agentic Layer ecosystem.
4
-
5
-
----
6
-
7
-
## Table of Contents
8
-
9
-
-[Getting Started](#getting-started)
10
-
-[Configuration](#configuration)
11
-
-[Publishing](#publishing)
12
-
-[Contributing](#contributing)
13
-
14
-
----
3
+
Documentation of the Agentic Layer ecosystem, built with Antora by aggregating content from multiple Git repositories.
15
4
16
5
## Getting Started
17
6
18
-
### Installation
19
-
20
7
Install all required dependencies:
21
8
22
-
```bash
9
+
```shell
23
10
npm install
24
11
```
25
12
26
-
### Starting the Documentation Build
13
+
Start kroki backend for diagram generation:
14
+
15
+
```shell
16
+
docker compose up -d
17
+
```
27
18
28
19
Generate the documentation site:
29
20
30
-
```bash
31
-
npx antora antora-playbook.yml
21
+
```shell
22
+
npm run build
32
23
```
33
24
34
25
After successful completion, the generated documentation site will be available in the `build/site` directory.
@@ -37,86 +28,4 @@ Troubleshooting tips:
37
28
- Ensure all referenced Git repositories and branches are accessible.
38
29
- Clear the cache if you encounter issues: `rm -rf .cache/antora`
39
30
40
-
## Configuration
41
-
42
-
The project is configured through the `antora-playbook.yml` file, which defines:
43
-
44
-
### Site Configuration
45
-
-**Title**: Agentic Layer Documentation
46
-
-**URL**: https://docs.agentic-layer.ai
47
-
-**Start Page**: home::index.adoc
48
-
49
-
### Content Sources
50
-
Source repositories are defined in `content.sources` array of `antora-playbook.yml`.
51
-
52
-
### UI Configuration
53
-
- Uses the default Antora UI theme from GitLab
54
-
- Custom UI overrides are stored in `supplemental-ui/` directory
55
-
- Navigation includes links to source Git repositories
0 commit comments