Add complete project scaffolding for GitCaddy.AI, an AI-powered Git assistant service. Includes: - gRPC service implementation with proto definitions - Core services: chat, code review, code intelligence, documentation, issues, and workflows - AI provider factory with configuration support - License validation system - Docker containerization with dev and prod compose files - .NET 9.0 solution with service and client projects
61 lines
595 B
Plaintext
61 lines
595 B
Plaintext
# Build results
|
|
[Dd]ebug/
|
|
[Rr]elease/
|
|
x64/
|
|
x86/
|
|
[Bb]in/
|
|
[Oo]bj/
|
|
[Ll]og/
|
|
[Ll]ogs/
|
|
|
|
# Visual Studio
|
|
.vs/
|
|
*.user
|
|
*.suo
|
|
*.userosscache
|
|
*.sln.docstates
|
|
*.userprefs
|
|
|
|
# JetBrains Rider
|
|
.idea/
|
|
*.sln.iml
|
|
|
|
# Build artifacts
|
|
*.nupkg
|
|
*.snupkg
|
|
*.zip
|
|
*.tar.gz
|
|
|
|
# Local config overrides
|
|
appsettings.*.local.json
|
|
appsettings.local.json
|
|
*.local.json
|
|
|
|
# Secrets and licenses
|
|
*.key
|
|
*.pem
|
|
*.license
|
|
secrets.json
|
|
license.json
|
|
|
|
# Docker
|
|
.docker/
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Test results
|
|
TestResults/
|
|
coverage/
|
|
*.coverage
|
|
*.coveragexml
|
|
|
|
# NuGet
|
|
packages/
|
|
*.nupkg
|
|
nuget.config
|
|
|
|
# Generated proto files
|
|
**/Proto/
|