Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,12 @@ jobs:
cache: 'npm'

- name: Configure Pages
# enablement: turn Pages on (build type = GitHub Actions) via the API if
# it isn't already, so the deploy step doesn't fail with
# "Deployment failed, try again later".
uses: actions/configure-pages@v5
with:
enablement: true

# --ignore-scripts skips husky install; no hooks needed to build docs.
- run: npm ci --ignore-scripts
Expand Down
5 changes: 4 additions & 1 deletion docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ import { defineConfig } from 'vitepress';
export default defineConfig({
title: 'ootk',
description: 'Orbital Object Toolkit - satellite propagation, orbit determination, sensors, and maneuver planning in TypeScript',
base: '/ootk/',
// Served at the root of the custom domain (ootk.kruczeklabs.com), so base is
// '/'. If you ever drop the custom domain and serve at thkruz.github.io/ootk/,
// change this back to '/ootk/'.
base: '/',
// README.md stays for GitHub folder browsing; index.md is the site home
srcExclude: ['README.md'],
themeConfig: {
Expand Down
1 change: 1 addition & 0 deletions docs/public/CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ootk.kruczeklabs.com
Loading