forked from github/copilot-cli
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
38 lines (27 loc) · 1.91 KB
/
.env.example
File metadata and controls
38 lines (27 loc) · 1.91 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
# KRUMAQ-COPILOT — environment variables
# Copy this file to `.env` and fill in your values before running `docker compose up`.
# ── Open WebUI ────────────────────────────────────────────────────────────────
# Display name shown in the UI header
WEBUI_NAME=KRUMAQ-COPILOT
# Public URL of your deployment (used for link generation and CORS)
# LAN/localhost example: https://krumaq.localhost
# Public domain example: https://krumaq.yourdomain.com
# Tailscale example: https://my-server.tail1234.ts.net
WEBUI_URL=https://krumaq.localhost
# Secret key for session signing — CHANGE THIS before starting the stack.
# ⚠️ The stack will refuse to start if this placeholder value is kept.
# Generate a secure key with: openssl rand -hex 32
WEBUI_SECRET_KEY=change-me-please-use-openssl-rand-hex-32
# Default model loaded on first launch
DEFAULT_MODELS=llama3.2
# Set to `false` to disable public user registration (recommended for private installs)
ENABLE_SIGNUP=false
# ── Ollama ────────────────────────────────────────────────────────────────────
# How long models stay loaded in memory after a request (e.g. 5m, 1h, 24h)
OLLAMA_KEEP_ALIVE=24h
# Number of requests processed in parallel (increase if you have >16GB VRAM)
OLLAMA_NUM_PARALLEL=2
# ── Caddy ─────────────────────────────────────────────────────────────────────
# Domain Caddy listens on. Must match WEBUI_URL above (without the https:// prefix).
# For public domains with auto Let's Encrypt, just set your real domain here.
KRUMAQ_DOMAIN=krumaq.localhost