xml-pipeline/.gitignore
dullfig a5c00c1e90 Add BloxServer API scaffold + architecture docs
BloxServer API (FastAPI + SQLAlchemy async):
- Database models: users, flows, triggers, executions, usage tracking
- Clerk JWT auth with dev mode bypass for local testing
- SQLite support for local dev, PostgreSQL for production
- CRUD routes for flows, triggers, executions
- Public webhook endpoint with token auth
- Health/readiness endpoints
- Pydantic schemas with camelCase aliases for frontend
- Docker + docker-compose setup

Architecture documentation:
- Librarian architecture with RLM-powered query engine
- Stripe billing integration (usage-based, trials, webhooks)
- LLM abstraction layer (rate limiting, semantic cache, failover)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-22 22:04:25 -08:00

39 lines
394 B
Text

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
.venv/
ENV/
# Build artifacts
build/
dist/
*.egg-info/
# Secrets & config
.env
.env.local
.env.*.local
xml_pipeline/config/organism_identity/private.pem
xml_pipeline/config/*.signed.xml
# IDE
.idea/
.vscode/
*.swp
*.swo
# Claude Code
.claude/
# OS
Thumbs.db
.DS_Store
# BloxServer local dev
bloxserver.db
bloxserver/.env