Initial commit: Birdcage documentation site

Starlight/Astro docs covering hardware reverse engineering,
satellite tracking guides, firmware command reference, and
engineering journal entries from the Carryout G2 exploration.

32 pages across getting-started, guides, reference,
understanding, and journal sections.
This commit is contained in:
Ryan Malloy 2026-02-13 05:20:10 -07:00
commit 088c1a5ace
44 changed files with 468217 additions and 0 deletions

45
astro.config.mjs Normal file
View file

@ -0,0 +1,45 @@
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
export default defineConfig({
telemetry: false,
devToolbar: { enabled: false },
integrations: [
starlight({
title: "Birdcage",
description: 'Winegard satellite dish control for amateur radio sky tracking',
social: [
{
icon: 'github',
label: 'GitHub',
href: 'https://github.com/saveitforparts/Travler_Rotor',
},
],
customCss: ['./src/styles/custom.css'],
sidebar: [
{ label: 'Home', link: '/' },
{
label: 'Getting Started',
autogenerate: { directory: 'getting-started' },
},
{
label: 'Guides',
autogenerate: { directory: 'guides' },
},
{
label: 'Reference',
autogenerate: { directory: 'reference' },
},
{
label: 'Understanding',
autogenerate: { directory: 'understanding' },
},
{
label: 'Project Journal',
badge: { text: 'Living', variant: 'note' },
autogenerate: { directory: 'journal' },
},
],
}),
],
});