This documentation site (Astro)
Canonical URL: https://www.openattitude.org
npm install
npm run build
Output is dist/—static HTML suitable for GitHub Pages or any static host.
astro.config.mjs sets site: 'https://www.openattitude.org' so Astro can emit absolute URLs where needed (sitemaps, RSS, etc.). The site is served at the domain root, so base stays at the default (/).
GitHub Pages (this repository)
The workflow .github/workflows/deploy-github-pages.yml runs npm ci, npm run build, and publishes dist/.
- Settings → Pages → Source: GitHub Actions
- Settings → Pages → Custom domain:
www.openattitude.org - DNS (at
openattitude.org): CNAMEwww→<org>.github.io(GitHub shows the exact target for your account or organization) public/CNAMEcontainswww.openattitude.orgso the build artifact includes the hostname file Pages expects- Enable HTTPS / Enforce HTTPS after the certificate is issued
Subpath hosting (unusual for this site)
If you ever published only under https://<org>.github.io/<repo>/, set base: '/<repo>/' in astro.config.mjs (see Astro configuration).
Seneca II panel (separate repository)
The fgpanel app is deployed separately—for example at **https://senecaii.openattitude.org**—with its own GitHub Actions workflow, BASE_URL=/, and DNS CNAME senecaii → <org>.github.io. It uses Vue / Vite, not Astro.
Local preview
npm run preview
Serves the production build locally after npm run build.