Added infrastructure for managing BACKEND and FRONTEND as independent components within a single repository: - .gitignore: Root-level exclusions (IDE, OS files, temp files) - GIT-WORKFLOW.md: Comprehensive commit conventions and workflow guide Key conventions: - Use scope prefixes: backend:, frontend:, chore:, docs:, etc. - Commit components independently with clear scopes - Maintain separate history tracking per component - Support coordinated releases when needed This enables: - Independent BACKEND commits (backend: feat/fix/refactor) - Independent FRONTEND commits (frontend: feat/fix/refactor) - Infrastructure commits (chore:, docs:, ci:) - Cross-cutting features when both components change 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
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)
|