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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ dist/
.env.secrets
*.cast
!docs-site/public/casts/*.cast
.astro/
11 changes: 11 additions & 0 deletions docs-site/astro.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { defineConfig } from "astro/config";
import react from "@astrojs/react";
import sitemap from "@astrojs/sitemap";
import tailwindcss from "@tailwindcss/vite";

export default defineConfig({
site: "https://timbeyer.github.io",
base: "/clawctl",
integrations: [react(), sitemap()],
vite: { plugins: [tailwindcss()] },
});
815 changes: 722 additions & 93 deletions docs-site/bun.lock

Large diffs are not rendered by default.

22 changes: 0 additions & 22 deletions docs-site/index.html

This file was deleted.

13 changes: 7 additions & 6 deletions docs-site/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,23 @@
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview"
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview"
},
"dependencies": {
"@astrojs/react": "^4.2.1",
"@astrojs/sitemap": "^3.3.1",
"asciinema-player": "^3.15.1",
"astro": "^5.7.5",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.3",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.4.1",
"tailwindcss": "^4.1.3",
"typescript": "~5.7.2",
"vite": "^6.3.1"
"typescript": "~5.7.2"
}
}
3 changes: 0 additions & 3 deletions docs-site/postcss.config.js

This file was deleted.

4 changes: 4 additions & 0 deletions docs-site/public/robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
User-agent: *
Allow: /

Sitemap: https://timbeyer.github.io/clawctl/sitemap-index.xml
Empty file removed docs-site/src/App.css
Empty file.
Loading
Loading