-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
55 lines (46 loc) · 2.97 KB
/
Copy path.env.example
File metadata and controls
55 lines (46 loc) · 2.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Qute Environment Configuration
# Copy this file to .env and fill in your values
# NEVER commit .env to version control
# ── Ollama (LLM backend) ──────────────────────────────────────────
# Leave blank for auto-detection (recommended for WSL/Docker environments)
# WSL: Windows host IP is detected automatically via ip route
# Docker: set to host.docker.internal
# Linux/macOS native: set to localhost
QUTE_OLLAMA_HOST=
QUTE_OLLAMA_MODEL=qwen2.5:latest
# ── DuckDB (local store) ──────────────────────────────────────────
# Leave blank to use default: ~/.qute/data.db
# Or set an explicit path: /path/to/your/qute.db
QUTE_DB_PATH=
# ── OpenTelemetry Collector ───────────────────────────────────────
# Used when running outside Docker. Docker sets this automatically.
QUTE_OTLP_ENDPOINT=http://localhost:4317
QUTE_OTLP_INSECURE=true
# ── Quantum / CUDA-Q ─────────────────────────────────────────────
# cpu — numpy simulation, no GPU required (default)
# nvidia — CUDA-Q GPU acceleration (requires NVIDIA Container Toolkit)
# tensornet — tensor network simulation
QUTE_QUANTUM_BACKEND=cpu
QUTE_QUANTUM_SHOTS=1024
# ── Ising noise model ─────────────────────────────────────────────
# Applies realistic depolarising noise to quantum circuits
# Set to false for ideal (noise-free) simulation
QUTE_ISING_NOISE_ENABLED=true
QUTE_ISING_NOISE_DEPOLAR_PROB=0.001
# ── Ising Decoder model ────────────────────────────────────────────
# Path to downloaded Ising Decoder model weights
# Download with: python3 scripts/download_ising_models.py
# Options: fast | accurate (default: fast)
QUTE_ISING_MODEL_DIR=data/ising_models
QUTE_ISING_MODEL_VARIANT=fast
# ── Sigma rule settings ───────────────────────────────────────────
# SigmaHQ community repo is cloned here on first use (~300MB)
QUTE_SIGMA_RULE_DIR=data/rules
QUTE_SIGMA_COMMUNITY_REPO=https://github.com/SigmaHQ/sigma
# ── UI ────────────────────────────────────────────────────────────
QUTE_UI_PORT=8503
QUTE_UI_THEME=dark
# ── UI Authentication ─────────────────────────────────────────────
# Leave blank to disable authentication (dev mode)
# To set a password run: python3 scripts/set_password.py
QUTE_UI_PASSWORD_HASH=