45 líneas
931 B
Plaintext
45 líneas
931 B
Plaintext
# Docker environment variables for HDH deployment
|
|
# Copy this file to .env and customize values as needed
|
|
|
|
# Build configuration
|
|
BUILD_DATE=2024-10-12T12:00:00Z
|
|
VERSION=1.0.0
|
|
|
|
# Logging configuration
|
|
HDH_LOG_LEVEL=INFO
|
|
|
|
# Benchmarking configuration
|
|
BENCHMARK_REPETITIONS=3
|
|
|
|
# Jupyter configuration (if using jupyter profile)
|
|
JUPYTER_TOKEN=hdh-secure-token-change-me
|
|
JUPYTER_PORT=8888
|
|
|
|
# Dashboard configuration (if using dashboard profile)
|
|
DASHBOARD_PORT=8080
|
|
FLASK_ENV=production
|
|
|
|
# External data directories
|
|
QASM_DIR=./qasm_examples
|
|
|
|
# Resource limits (optional - can be set in docker-compose override)
|
|
# MEMORY_LIMIT=2g
|
|
# CPU_LIMIT=2
|
|
|
|
# Network configuration
|
|
# NETWORK_NAME=hdh-network
|
|
|
|
# Volume configuration
|
|
# VOLUME_DRIVER=local
|
|
|
|
# Timezone (optional)
|
|
TZ=UTC
|
|
|
|
# Python configuration
|
|
PYTHONUNBUFFERED=1
|
|
PYTHONDONTWRITEBYTECODE=1
|
|
|
|
# HDH specific settings
|
|
HDH_MAX_QUBITS=10
|
|
HDH_DEFAULT_PARTITIONS=3
|
|
HDH_ENABLE_VISUALIZATION=true |