Added configurable npm registry support to enable use of custom npm proxies or private registries during Docker builds. This is essential for corporate environments, air-gapped deployments, or when using npm mirrors. **Changes:** - Dockerfile.frontend: Added NPM_REGISTRY build argument with conditional configuration - docker-compose.yml: Pass NPM_REGISTRY from environment to build args - .env.example: Added NPM_REGISTRY configuration with usage examples **Usage:** Set NPM_REGISTRY in .env file or as environment variable: - Nexus: http://nexus.company.com:8081/repository/npm-proxy/ - Artifactory: https://artifactory.company.com/artifactory/api/npm/npm-remote/ - Verdaccio: http://localhost:4873/ - Default: Leave blank for https://registry.npmjs.org/ **Example:** ```bash NPM_REGISTRY=http://your-npm-proxy:8081/repository/npm-proxy/ ./quickstart.sh ``` Defaults to official npm registry if not specified. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
35 lines
1.1 KiB
Plaintext
35 lines
1.1 KiB
Plaintext
# Deployment Mode (Feature Flag)
|
|
# Options: "cloud" or "air-gapped"
|
|
# cloud = automatically uses S3, air-gapped = automatically uses MinIO
|
|
DEPLOYMENT_MODE=air-gapped
|
|
|
|
# Database Configuration
|
|
DATABASE_URL=postgresql://user:password@localhost:5432/datalake
|
|
|
|
# Storage Backend Configuration (optional - auto-configured based on DEPLOYMENT_MODE)
|
|
# Options: "s3" or "minio"
|
|
STORAGE_BACKEND=minio
|
|
|
|
# AWS S3 Configuration (when STORAGE_BACKEND=s3)
|
|
AWS_ACCESS_KEY_ID=your_access_key
|
|
AWS_SECRET_ACCESS_KEY=your_secret_key
|
|
AWS_REGION=us-east-1
|
|
S3_BUCKET_NAME=test-artifacts
|
|
|
|
# MinIO Configuration (when STORAGE_BACKEND=minio)
|
|
MINIO_ENDPOINT=localhost:9000
|
|
MINIO_ACCESS_KEY=minioadmin
|
|
MINIO_SECRET_KEY=minioadmin
|
|
MINIO_BUCKET_NAME=test-artifacts
|
|
MINIO_SECURE=false
|
|
|
|
# Application Configuration
|
|
API_HOST=0.0.0.0
|
|
API_PORT=8000
|
|
MAX_UPLOAD_SIZE=524288000
|
|
|
|
# NPM Configuration (for frontend build)
|
|
# Leave blank or set to https://registry.npmjs.org/ for default npm registry
|
|
# Set to your custom npm proxy/registry URL if needed (e.g., http://your-nexus-server:8081/repository/npm-proxy/)
|
|
NPM_REGISTRY=
|