This repository contains the documentation site for AI Templates.
AI Templates are production-ready components for building AI applications on Kubernetes, including MCP servers, AI agents, and chat interfaces.
# Install Hugo and Asciidoctor
brew install hugo asciidoctor
# Run the development server
./serve.sh
# Site available at http://localhost:1313/# Production build (run before opening a PR)
hugo --gc --minify
# Output in public/ directoryThis repository does not use pre-commit hooks (unlike the template repos). CI runs Super Linter on every push and pull request.
Run these checks locally before you push:
# 1. Production Hugo build (required — fast, works on all platforms)
hugo --gc --minify
# 2. Super Linter (matches CI — see note for Apple Silicon below)
make super-linter
# 3. Optional: link checker (nightly in CI, not PR-gated)
make testApple Silicon (M-series Mac): make super-linter may fail locally because the slim Super Linter container image has no linux/arm64 build. In that case, rely on the Super linter check on your pull request in GitHub Actions.
Development preview: ./serve.sh is for browsing changes at http://localhost:1313/ — it does not replace the production build step above.
See CONTRIBUTING.md for the full checklist.
website/
├── content/ # Documentation content (Markdown)
│ ├── templates/ # Template documentation
│ ├── tools/ # AI tools guides
│ └── contribute/ # Contribution guides
├── layouts/ # Hugo layouts
├── static/ # Static assets (CSS, images, JS)
└── themes/ # PatternFly theme
See Contributing to Documentation for guidelines on improving the documentation.
The site automatically deploys to GitHub Pages via GitHub Actions when changes are pushed to the main branch.
Live site: https://redhat-data-and-ai.github.io/website/
See DEPLOYMENT.md for detailed deployment instructions.
- MIGRATION_JOURNEY.md - Complete migration history and decisions
- PLACEHOLDER_TRACKING.md - Content gaps and future work
- SHORTCODE_CONVERSION.md - Shortcode reference for contributors
- DEPLOYMENT.md - Deployment instructions
Apache 2.0 License - See LICENSE
- GitHub Discussions: https://github.com/redhat-data-and-ai/website/discussions
- Issues: https://github.com/redhat-data-and-ai/website/issues