Business blog and knowledge center for AI deployment, technical guides, and real-world implementation case studies. Built with Hugo and presented by Intent Solutions.
π Live Site: startaitools.com
- π Technical Blog - 37+ posts on AI deployment, data engineering, and DevOps
- π οΈ Real-World Case Studies - DiagnosticPro platform, BigQuery schemas, RSS validation
- π AI Engineering Resources - Comprehensive curriculum and research materials
- π¨ Professional Design - Clean, fast, business-focused with Archie theme
- π SEO Optimized - Structured data, meta tags, sitemap
- β‘ Lightning Fast - Static site with optimized builds and aggressive caching
- π± Responsive - Mobile-first design with excellent UX
- Static Site Generator: Hugo v0.12.0
- Theme: Archie (Professional business theme)
- Hosting: Netlify
- Domain: startaitools.com
- Build Process: Minified, optimized, cache-controlled
- Features: Syntax highlighting, code copy buttons, table of contents
content/
βββ posts/ # Blog posts (37+ technical articles)
β βββ *.md # Individual blog posts
β βββ startai/ # Synced content subdirectory
βββ _index.md # Homepage
βββ about.md # About page
βββ contact.md # Contact page
βββ projects.md # Projects showcase
βββ research.md # Research & curriculum
βββ en/ # Legacy English content structure
βββ agentic-design-patterns/ # Design pattern documentation
βββ mcp-for-beginners/ # MCP tutorial series
βββ tiny-recursive-models/ # ML model documentation
# Clone the repository (or navigate to existing directory)
cd /home/jeremy/projects/blog/startaitools
# Start development server with drafts
hugo server -D
# Start server without drafts (production preview)
hugo server
# Start server accessible from external devices
hugo server -D --bind 0.0.0.0
# View at http://localhost:1313# Build optimized static site
hugo --gc --minify --cleanDestinationDir
# Output will be in ./public directory# Create a new blog post
hugo new posts/my-new-post.md
# Create a project page
hugo new projects/my-project.mdPosts use YAML format (not TOML):
---
title: "Your Post Title"
date: 2025-10-09T10:00:00-06:00
draft: false
tags: ["ai", "programming", "deployment"]
author: "Jeremy Longshore"
description: "Brief description for SEO and social media"
---Important: This project uses YAML front matter (delimited by ---), not TOML format.
Edit config/_default/config.toml for site-wide settings:
baseURL = "https://startaitools.com/"
title = "Start AI Tools - Presented by Intent Solutions"
theme = "archie"
author = "Jeremy Longshore"
[params]
description = "Deploy AI solutions in days, not months"The site has a 6-item navigation menu:
- Home
- Posts
- About
- Research & Curriculum
- Projects
- Contact
Edit menu items in config/_default/config.toml under [menu] section.
The Archie theme provides professional business styling. To customize:
- Override theme layouts in
layouts/directory - Add custom CSS in
static/css/custom.css - Modify theme parameters in
config.toml
- Data Engineering - BigQuery 254-table schema, data pipelines, RSS validation (226+ feeds)
- AI Platforms - DiagnosticPro case studies, AI integration workflows
- DevOps Automation - N8N workflows, GitHub Actions, Terraform guides
- Documentation Systems - Claude.md, directory standards, AI-assisted writing
- Real-World Debugging - Slack integration, COPPA compliance, testing suites
- DiagnosticPro - AI-powered diagnostic platform for repair professionals
- Intent Solutions - AI deployment and consulting services
- AI Engineering Curriculum - Comprehensive learning path
- Jeremy Longshore Blog - Personal portfolio and tech blog
The site automatically deploys to Netlify on push to main/master branch:
- Build command:
hugo --gc --minify --cleanDestinationDir - Publish directory:
public/ - Hugo version: 0.150.0 (locked in netlify.toml)
- Node version: 18
- Domain: startaitools.com with HTTPS force redirect
- Timezone: America/Chicago
Aggressive cache-busting configured in netlify.toml:
- HTML pages:
no-cache, no-store, must-revalidate - Dynamic routes:
public, max-age=0, must-revalidate
This ensures fresh content on every visit while maintaining performance.
# Build the site
hugo --gc --minify --cleanDestinationDir
# Deploy public/ directory to any static host
rsync -avz public/ user@server:/var/www/html/- Lighthouse Score: 95+/100
- Page Load: < 2s
- First Contentful Paint: < 800ms
- Time to Interactive: < 1.5s
- Total Page Size: Optimized with minification and compression
Contributions are welcome! Please see CONTRIBUTING.md for details.
- Fork the repository (if external contributor)
- Create feature branch (
git checkout -b feature/amazing-feature) - Test locally with
hugo server -D - Commit changes (
git commit -m 'Add amazing feature') - Push to branch (
git push origin feature/amazing-feature) - Open Pull Request
- Use YAML front matter (not TOML)
- Include meaningful tags and descriptions
- Test locally before pushing
- Follow existing content structure
- Optimize images before adding
This project is licensed under the MIT License - see LICENSE file for details.
- Hugo - Blazing fast static site generator
- Archie Theme - Clean, professional business theme
- Netlify - Seamless hosting and deployment
- Open source community
- Website: startaitools.com
- Business: Intent Solutions
- Email: jeremy@intentsolutions.io
- GitHub: @jeremylongshore
- LinkedIn: Jeremy Longshore
- X/Twitter: @asphaltcowb0y
Deploy AI solutions in days, not months
Presented by Intent Solutions
β Star this project β’ π Visit the site β’ π Report an issue