uzdavines.ai — Knowledge Base
Welcome to the documentation for the uzdavines.ai platform. This knowledge base covers architecture decisions, development setup, deployment pipelines, and standard operating procedures.
Platform Overview
uzdavines.ai is a personal brand platform for Bobby Uzdavines, an AI-Augmented Solutions Architect. The platform consists of three independently deployed applications:
| Application | URL | Framework | Purpose |
|---|---|---|---|
| Homepage | uzdavines.ai | Next.js + Tailwind CSS | Executive homepage with AI chatbot |
| Knowledge Base | docs.uzdavines.ai | Docusaurus | Documentation and guides |
| Resume | resume.uzdavines.ai | Next.js + Tailwind CSS | Interactive resume with AI chatbot |
Monorepo Structure
All applications live in a single monorepo (uzdavines-platform) with npm workspaces:
uzdavines-platform/
├── apps/
│ ├── homepage/ # Next.js — uzdavines.ai
│ ├── docs/ # Docusaurus — docs.uzdavines.ai
│ └── resume/ # Next.js — resume.uzdavines.ai
├── packages/
│ └── shared/ # Shared utilities
├── .github/
│ └── workflows/ # CI/CD pipelines
└── package.json # Root workspace config
Quick Links
- Environment Setup — Get the development environment running
- Architecture Overview — Platform architecture and design decisions
- CI/CD Pipelines — How code gets from commit to production
- AI Architecture — AI integration patterns and chatbot design
- SOP Template — Template for creating standard operating procedures