Some checks failed
CI/CD / loc-budget (push) Successful in 15s
CI/CD / guardrail-integrity (push) Has been skipped
CI/CD / go-lint (push) Has been skipped
CI/CD / python-lint (push) Has been skipped
CI/CD / nodejs-lint (push) Has been skipped
CI/CD / test-go-ai-compliance (push) Successful in 45s
CI/CD / test-python-backend-compliance (push) Failing after 38s
CI/CD / test-python-document-crawler (push) Successful in 29s
CI/CD / test-python-dsms-gateway (push) Successful in 28s
CI/CD / sbom-scan (push) Has been skipped
CI/CD / validate-canonical-controls (push) Successful in 22s
Rename .env.coolify.example → .env.orca.example and docker-compose.coolify.yml → docker-compose.orca.yml. Update all text references across README, CONTRIBUTING, deploy.sh, and CLAUDE.md. Fix branch guidance to feature branch workflow. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
62 lines
1.7 KiB
Plaintext
62 lines
1.7 KiB
Plaintext
# =========================================================
|
|
# BreakPilot Compliance — Orca Environment Variables
|
|
# =========================================================
|
|
# Copy these into Orca's environment variable UI
|
|
# for the breakpilot-compliance Docker Compose resource.
|
|
# =========================================================
|
|
|
|
# --- External PostgreSQL (Orca-managed, same as Core) ---
|
|
COMPLIANCE_DATABASE_URL=postgresql://breakpilot:CHANGE_ME@<orca-postgres-hostname>:5432/breakpilot_db
|
|
|
|
# --- Security ---
|
|
JWT_SECRET=CHANGE_ME_SAME_AS_CORE
|
|
|
|
# --- External S3 Storage (same as Core) ---
|
|
S3_ENDPOINT=<s3-endpoint-host:port>
|
|
S3_ACCESS_KEY=CHANGE_ME_SAME_AS_CORE
|
|
S3_SECRET_KEY=CHANGE_ME_SAME_AS_CORE
|
|
S3_SECURE=true
|
|
|
|
# --- External Qdrant ---
|
|
QDRANT_URL=https://<qdrant-hostname>
|
|
QDRANT_API_KEY=CHANGE_ME_QDRANT_API_KEY
|
|
|
|
# --- Session ---
|
|
SESSION_TTL_HOURS=24
|
|
|
|
# --- SMTP (Real mail server) ---
|
|
SMTP_HOST=smtp.example.com
|
|
SMTP_PORT=587
|
|
SMTP_USERNAME=compliance@breakpilot.ai
|
|
SMTP_PASSWORD=CHANGE_ME_SMTP_PASSWORD
|
|
SMTP_FROM_NAME=BreakPilot Compliance
|
|
SMTP_FROM_ADDR=compliance@breakpilot.ai
|
|
|
|
# --- LLM Configuration ---
|
|
COMPLIANCE_LLM_PROVIDER=anthropic
|
|
SELF_HOSTED_LLM_URL=
|
|
SELF_HOSTED_LLM_MODEL=
|
|
COMPLIANCE_LLM_MAX_TOKENS=4096
|
|
COMPLIANCE_LLM_TEMPERATURE=0.3
|
|
COMPLIANCE_LLM_TIMEOUT=120
|
|
ANTHROPIC_API_KEY=CHANGE_ME_ANTHROPIC_KEY
|
|
ANTHROPIC_DEFAULT_MODEL=claude-sonnet-4-5-20250929
|
|
|
|
# --- Ollama (optional) ---
|
|
OLLAMA_URL=
|
|
OLLAMA_DEFAULT_MODEL=
|
|
COMPLIANCE_LLM_MODEL=
|
|
|
|
# --- LLM Fallback ---
|
|
LLM_FALLBACK_PROVIDER=
|
|
|
|
# --- PII & Audit ---
|
|
PII_REDACTION_ENABLED=true
|
|
PII_REDACTION_LEVEL=standard
|
|
AUDIT_RETENTION_DAYS=365
|
|
AUDIT_LOG_PROMPTS=true
|
|
|
|
# --- Frontend URLs (build args) ---
|
|
NEXT_PUBLIC_API_URL=https://api-compliance.breakpilot.ai
|
|
NEXT_PUBLIC_SDK_URL=https://sdk.breakpilot.ai
|