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:
74
infra/environments/development/.env.example
Normal file
74
infra/environments/development/.env.example
Normal file
@@ -0,0 +1,74 @@
|
||||
# FILE: infra/environments/development/.env.example
|
||||
# Development Environment Configuration
|
||||
# Copy this to .env and customize for your development server
|
||||
# WARNING: This file contains sensitive credentials. DO NOT commit to git!
|
||||
|
||||
# Domain Configuration
|
||||
DOMAIN=dev.harkon.co.uk
|
||||
EMAIL=dev@harkon.co.uk
|
||||
|
||||
# Database Passwords (CHANGE THESE!)
|
||||
POSTGRES_PASSWORD=CHANGE_ME_POSTGRES_PASSWORD
|
||||
NEO4J_PASSWORD=CHANGE_ME_NEO4J_PASSWORD
|
||||
AUTHENTIK_DB_PASSWORD=CHANGE_ME_AUTHENTIK_DB_PASSWORD
|
||||
|
||||
# Object Storage (CHANGE THESE!)
|
||||
MINIO_ROOT_USER=admin
|
||||
MINIO_ROOT_PASSWORD=CHANGE_ME_MINIO_ROOT_PASSWORD
|
||||
MINIO_ACCESS_KEY=admin
|
||||
MINIO_SECRET_KEY=CHANGE_ME_MINIO_SECRET_KEY
|
||||
|
||||
# Vector Database
|
||||
QDRANT__SERVICE__GRPC_PORT=6334
|
||||
|
||||
# Secrets Management (CHANGE THIS!)
|
||||
VAULT_DEV_ROOT_TOKEN_ID=CHANGE_ME_VAULT_TOKEN
|
||||
|
||||
# Identity & SSO (CHANGE THESE!)
|
||||
# Generate with: openssl rand -base64 32
|
||||
AUTHENTIK_SECRET_KEY=CHANGE_ME_AUTHENTIK_SECRET
|
||||
AUTHENTIK_OUTPOST_TOKEN=CHANGE_ME_OUTPOST_TOKEN
|
||||
AUTHENTIK_BOOTSTRAP_EMAIL=admin@dev.harkon.co.uk
|
||||
AUTHENTIK_BOOTSTRAP_PASSWORD=CHANGE_ME_ADMIN_PASSWORD
|
||||
AUTHENTIK_BOOTSTRAP_TOKEN=
|
||||
|
||||
# Monitoring (CHANGE THIS!)
|
||||
GRAFANA_PASSWORD=CHANGE_ME_GRAFANA_PASSWORD
|
||||
GRAFANA_OAUTH_CLIENT_ID=grafana
|
||||
GRAFANA_OAUTH_CLIENT_SECRET=CHANGE_ME_GRAFANA_OAUTH_SECRET
|
||||
|
||||
# OAuth Client Secrets for Authentik Providers (CHANGE THESE!)
|
||||
AUTHENTIK_API_CLIENT_SECRET=CHANGE_ME_API_SECRET
|
||||
AUTHENTIK_UI_REVIEW_CLIENT_SECRET=CHANGE_ME_UI_SECRET
|
||||
AUTHENTIK_GRAFANA_CLIENT_SECRET=CHANGE_ME_GRAFANA_SECRET
|
||||
AUTHENTIK_MINIO_CLIENT_SECRET=CHANGE_ME_MINIO_SECRET
|
||||
AUTHENTIK_VAULT_CLIENT_SECRET=CHANGE_ME_VAULT_SECRET
|
||||
|
||||
# Feature Flags
|
||||
UNLEASH_ADMIN_TOKEN=development.unleash-admin-api-token
|
||||
|
||||
# Application Configuration (CHANGE THIS!)
|
||||
NEXTAUTH_SECRET=CHANGE_ME_NEXTAUTH_SECRET
|
||||
|
||||
# Redis Configuration
|
||||
REDIS_PASSWORD=CHANGE_ME_REDIS_PASSWORD
|
||||
|
||||
# NATS Configuration
|
||||
NATS_USER=nats
|
||||
NATS_PASSWORD=CHANGE_ME_NATS_PASSWORD
|
||||
|
||||
# Application Secrets
|
||||
JWT_SECRET=CHANGE_ME_JWT_SECRET_32_CHARS_MIN
|
||||
ENCRYPTION_KEY=CHANGE_ME_ENCRYPTION_KEY_32_CHARS
|
||||
|
||||
# API Keys (for development testing)
|
||||
OPENAI_API_KEY=sk-your-openai-key
|
||||
ANTHROPIC_API_KEY=sk-ant-your-anthropic-key
|
||||
|
||||
# Registry Configuration
|
||||
REGISTRY=gitea.dev.harkon.co.uk
|
||||
REGISTRY_USER=harkon
|
||||
REGISTRY_PASSWORD=CHANGE_ME_GITEA_TOKEN
|
||||
IMAGE_TAG=dev
|
||||
OWNER=harkon
|
||||
|
||||
Reference in New Issue
Block a user