Multi-agent AI laboratory with ASP.NET Core 8.0 backend and Flutter frontend. Implements CQRS architecture, OpenAPI contract-first API design. BACKEND: Agent management, conversations, executions with PostgreSQL + Ollama FRONTEND: Cross-platform UI with strict typing and Result-based error handling Co-Authored-By: Jean-Philippe Brule <jp@svrnty.io>
39 lines
822 B
Plaintext
39 lines
822 B
Plaintext
# ==============================================================================
|
|
# CODEX_ADK Root .gitignore
|
|
# ==============================================================================
|
|
# This is a monorepo combining BACKEND (ASP.NET Core) and FRONTEND (Flutter)
|
|
# Each subdirectory has its own .gitignore for component-specific exclusions
|
|
# ==============================================================================
|
|
|
|
# IDE & Editor - Global
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS Files - Global
|
|
.DS_Store
|
|
Thumbs.db
|
|
._*
|
|
|
|
# Temporary Files
|
|
*.tmp
|
|
*.temp
|
|
*.bak
|
|
|
|
# Documentation drafts (keep finalized docs)
|
|
DRAFT_*.md
|
|
TODO_*.md
|
|
NOTES_*.md
|
|
|
|
# Local environment overrides
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Git helper files
|
|
.git-credentials
|
|
|
|
# Project-specific exclusions
|
|
# (BACKEND and FRONTEND have their own .gitignore files)
|