Skip to content

Commit c5a5be8

Browse files
authored
Merge pull request #17 from AltimateAI/docs/switch-to-mkdocs-material
docs: switch from Jekyll to Material for MkDocs
2 parents 221220b + beb5180 commit c5a5be8

23 files changed

Lines changed: 104 additions & 175 deletions

.github/workflows/docs.yml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,24 @@ jobs:
2222
- name: Checkout
2323
uses: actions/checkout@v4
2424

25+
- name: Setup Python
26+
uses: actions/setup-python@v5
27+
with:
28+
python-version: "3.12"
29+
30+
- name: Install mkdocs-material
31+
run: pip install mkdocs-material
32+
33+
- name: Build with MkDocs
34+
run: mkdocs build -f docs/mkdocs.yml -d site
35+
2536
- name: Setup Pages
2637
uses: actions/configure-pages@v5
2738

28-
- name: Build with Jekyll
29-
uses: actions/jekyll-build-pages@v1
30-
with:
31-
source: ./docs
32-
destination: ./_site
33-
3439
- name: Upload artifact
3540
uses: actions/upload-pages-artifact@v3
41+
with:
42+
path: docs/site
3643

3744
deploy:
3845
environment:

docs/Gemfile

Lines changed: 0 additions & 4 deletions
This file was deleted.

docs/_config.yml

Lines changed: 0 additions & 36 deletions
This file was deleted.
Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
---
2-
layout: default
3-
title: Agent Modes
4-
nav_order: 3
5-
---
6-
71
# Agent Modes
82

93
altimate-code runs in one of four specialized modes. Each mode has different permissions, tool access, and behavioral guardrails.
1.83 KB
Loading

docs/docs/assets/logo.png

189 KB
Loading
Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
---
2-
layout: default
3-
title: Getting Started
4-
nav_order: 2
5-
---
6-
71
# Getting Started
82

93
## Installation
Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
---
2-
layout: default
3-
title: Cost Optimization Guide
4-
parent: Guides
5-
nav_order: 1
6-
---
7-
81
# Cost Optimization Guide
92

103
altimate-code is your cost advocate. Here's how to use it to cut warehouse spend.

docs/docs/guides/index.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Guides
2+
3+
Practical guides for common data engineering workflows.
4+
5+
| Guide | Description |
6+
|---|---|
7+
| [Cost Optimization](cost-optimization.md) | Find and fix expensive queries, right-size warehouses |
8+
| [Migration](migration.md) | Translate SQL across warehouse dialects |
9+
| [Using with Claude Code](using-with-claude-code.md) | Run altimate-code tools from Claude Code sessions |
10+
| [Using with Codex](using-with-codex.md) | Use your ChatGPT subscription as the LLM backend |
Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
---
2-
layout: default
3-
title: Migration Guide
4-
parent: Guides
5-
nav_order: 2
6-
---
7-
81
# Migration Guide
92

103
Use migrator mode to translate SQL across warehouse dialects while preserving lineage and correctness.

0 commit comments

Comments
 (0)