Initial commit
Some checks failed
CI/CD Pipeline / Code Quality & Linting (push) Has been cancelled
CI/CD Pipeline / Policy Validation (push) Has been cancelled
CI/CD Pipeline / Test Suite (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-coverage) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-extract) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-firm-connectors) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-forms) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-hmrc) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-ingestion) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-kg) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-normalize-map) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-ocr) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-rag-indexer) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-rag-retriever) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-reason) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-rpa) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (ui-review) (push) Has been cancelled
CI/CD Pipeline / Security Scanning (svc-coverage) (push) Has been cancelled
CI/CD Pipeline / Security Scanning (svc-extract) (push) Has been cancelled
CI/CD Pipeline / Security Scanning (svc-kg) (push) Has been cancelled
CI/CD Pipeline / Security Scanning (svc-rag-retriever) (push) Has been cancelled
CI/CD Pipeline / Security Scanning (ui-review) (push) Has been cancelled
CI/CD Pipeline / Generate SBOM (push) Has been cancelled
CI/CD Pipeline / Deploy to Staging (push) Has been cancelled
CI/CD Pipeline / Deploy to Production (push) Has been cancelled
CI/CD Pipeline / Notifications (push) Has been cancelled
Some checks failed
CI/CD Pipeline / Code Quality & Linting (push) Has been cancelled
CI/CD Pipeline / Policy Validation (push) Has been cancelled
CI/CD Pipeline / Test Suite (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-coverage) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-extract) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-firm-connectors) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-forms) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-hmrc) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-ingestion) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-kg) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-normalize-map) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-ocr) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-rag-indexer) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-rag-retriever) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-reason) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (svc-rpa) (push) Has been cancelled
CI/CD Pipeline / Build Docker Images (ui-review) (push) Has been cancelled
CI/CD Pipeline / Security Scanning (svc-coverage) (push) Has been cancelled
CI/CD Pipeline / Security Scanning (svc-extract) (push) Has been cancelled
CI/CD Pipeline / Security Scanning (svc-kg) (push) Has been cancelled
CI/CD Pipeline / Security Scanning (svc-rag-retriever) (push) Has been cancelled
CI/CD Pipeline / Security Scanning (ui-review) (push) Has been cancelled
CI/CD Pipeline / Generate SBOM (push) Has been cancelled
CI/CD Pipeline / Deploy to Staging (push) Has been cancelled
CI/CD Pipeline / Deploy to Production (push) Has been cancelled
CI/CD Pipeline / Notifications (push) Has been cancelled
This commit is contained in:
72
infra/environments/local/.env.example
Normal file
72
infra/environments/local/.env.example
Normal file
@@ -0,0 +1,72 @@
|
||||
# FILE: infra/environments/local/.env.example
|
||||
# Local Development Environment Configuration
|
||||
# Copy this to .env and customize for your local setup
|
||||
|
||||
# Domain Configuration
|
||||
DOMAIN=localhost
|
||||
EMAIL=dev@localhost
|
||||
|
||||
# Database Passwords (use simple passwords for local)
|
||||
POSTGRES_PASSWORD=postgres
|
||||
NEO4J_PASSWORD=neo4j123
|
||||
AUTHENTIK_DB_PASSWORD=authentik123
|
||||
|
||||
# Object Storage
|
||||
MINIO_ROOT_USER=minioadmin
|
||||
MINIO_ROOT_PASSWORD=minioadmin
|
||||
MINIO_ACCESS_KEY=minioadmin
|
||||
MINIO_SECRET_KEY=minioadmin123
|
||||
|
||||
# Vector Database
|
||||
QDRANT__SERVICE__GRPC_PORT=6334
|
||||
|
||||
# Secrets Management
|
||||
VAULT_DEV_ROOT_TOKEN_ID=dev-root-token
|
||||
|
||||
# Identity & SSO (optional for local)
|
||||
AUTHENTIK_SECRET_KEY=local-secret-key-change-me
|
||||
AUTHENTIK_OUTPOST_TOKEN=local-outpost-token
|
||||
AUTHENTIK_BOOTSTRAP_EMAIL=admin@localhost
|
||||
AUTHENTIK_BOOTSTRAP_PASSWORD=admin123
|
||||
AUTHENTIK_BOOTSTRAP_TOKEN=
|
||||
|
||||
# Monitoring
|
||||
GRAFANA_PASSWORD=admin
|
||||
GRAFANA_OAUTH_CLIENT_ID=grafana
|
||||
GRAFANA_OAUTH_CLIENT_SECRET=grafana-secret
|
||||
|
||||
# OAuth Client Secrets (not needed for local without Authentik)
|
||||
AUTHENTIK_API_CLIENT_SECRET=api-secret
|
||||
AUTHENTIK_UI_REVIEW_CLIENT_SECRET=ui-secret
|
||||
AUTHENTIK_GRAFANA_CLIENT_SECRET=grafana-secret
|
||||
AUTHENTIK_MINIO_CLIENT_SECRET=minio-secret
|
||||
AUTHENTIK_VAULT_CLIENT_SECRET=vault-secret
|
||||
|
||||
# Feature Flags
|
||||
UNLEASH_ADMIN_TOKEN=local-unleash-token
|
||||
|
||||
# Application Configuration
|
||||
NEXTAUTH_SECRET=local-nextauth-secret
|
||||
|
||||
# Redis Configuration
|
||||
REDIS_PASSWORD=redis123
|
||||
|
||||
# NATS Configuration
|
||||
NATS_USER=nats
|
||||
NATS_PASSWORD=nats123
|
||||
|
||||
# Application Secrets
|
||||
JWT_SECRET=local-jwt-secret-change-me
|
||||
ENCRYPTION_KEY=local-encryption-key-32-chars!!
|
||||
|
||||
# API Keys (for local testing)
|
||||
OPENAI_API_KEY=sk-test-key
|
||||
ANTHROPIC_API_KEY=sk-ant-test-key
|
||||
|
||||
# Registry Configuration
|
||||
REGISTRY=localhost:5000
|
||||
REGISTRY_USER=admin
|
||||
REGISTRY_PASSWORD=admin123
|
||||
IMAGE_TAG=latest
|
||||
OWNER=local
|
||||
|
||||
Reference in New Issue
Block a user