Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
- Wire auth bootstrap (root API key, startup guard, auth-first router) in main.rs - Add cluster gateway handlers with proper error handling - Update Dockerfile with optimized multi-stage build and .dockerignore - Add orchard9-deploy skill for CI/CD pipeline (Gitea/Woodpecker/Kaniko/Zot) - Add k8s deployment roadmap and provision-project-keys script - Document production infrastructure in CLAUDE.md - Update three-node-cluster reference architecture - Trim hosted.rs doc comments to stay under 800-line limit
56 lines
722 B
Plaintext
56 lines
722 B
Plaintext
# Build artifacts - MUST exclude target
|
|
target
|
|
target/
|
|
**/target
|
|
**/target/
|
|
**/*.rs.bk
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Git
|
|
.git
|
|
.git/
|
|
.gitignore
|
|
|
|
# Local data
|
|
data/
|
|
*.db
|
|
*.wal
|
|
|
|
# Documentation (we don't need docs for the build)
|
|
docs/
|
|
ai-lookup/
|
|
*.md
|
|
!README.md
|
|
|
|
# Community app (has its own Dockerfile)
|
|
community/
|
|
|
|
# Test/dev files
|
|
tests/
|
|
benches/
|
|
examples/
|
|
|
|
# Misc
|
|
.env*
|
|
*.log
|
|
*.tmp
|
|
.claude/
|
|
latent/
|
|
|
|
# Go SDK — pure Go, not in Rust workspace
|
|
sdk/
|
|
|
|
# Non-Rust applications (only applications/aphoria/ is in the workspace)
|
|
applications/disputed/
|
|
applications/stemedb-dashboard/
|
|
applications/video-renderer/
|
|
applications/pitch/
|
|
applications/aphoria-pitch/
|
|
applications/aphoria-dashboard/
|
|
applications/findmyhealth/
|