comparison mrjunejune/.config.development @ 265:056790c4fb0d

add role-aware Epi assistant prompts Add verified June knowledge, guest/member/admin Copilot profiles, profile-isolated session recovery, animated Epi greetings, and a single authoritative runtime config workflow for inference. Co-authored-by: Copilot <[email protected]>
author MrJuneJune <me@mrjunejune.com>
date Fri, 07 Aug 2026 10:50:30 -0700
parents 04fee26ecce0
children
comparison
equal deleted inserted replaced
264:04fee26ecce0 265:056790c4fb0d
17 17
18 # Presigned URL expiration (seconds) 18 # Presigned URL expiration (seconds)
19 S3_URL_EXPIRES=3600 19 S3_URL_EXPIRES=3600
20 20
21 # ───────────────────────────────────────────────────────────────────────────── 21 # ─────────────────────────────────────────────────────────────────────────────
22 # Auth — all AUTH_* values may also be set as environment variables; env takes 22 # This is the authoritative runtime configuration source for the server and
23 # precedence over this file. Never commit real values here. 23 # inference stack. Normal Bazel workflows require no shell exports. Environment
24 # values are used only for tests, backwards compatibility when no config file is
25 # present, and internal supervisor-to-child wiring. Never commit real values.
24 # 26 #
25 # AUTH_COOKIE_SECRET 27 # AUTH_COOKIE_SECRET
26 # A cryptographically random 32-byte secret encoded as a lowercase hex string 28 # A cryptographically random 32-byte secret encoded as a lowercase hex string
27 # (64 hex chars). Used to sign session and guest cookies via HMAC-SHA-256. 29 # (64 hex chars). Used to sign session and guest cookies via HMAC-SHA-256.
28 # Generate with: 30 # Generate with:
72 # AUTH_DEV_INSECURE_COOKIE=true. 74 # AUTH_DEV_INSECURE_COOKIE=true.
73 # In production, either leave unset (0.0.0.0) or set to a specific interface. 75 # In production, either leave unset (0.0.0.0) or set to a specific interface.
74 SERVER_HOST=127.0.0.1 76 SERVER_HOST=127.0.0.1
75 77
76 # ───────────────────────────────────────────────────────────────────────────── 78 # ─────────────────────────────────────────────────────────────────────────────
77 # Guest inference quota — enable guest inference at runtime via the environment: 79 # Inference stack
78 # MRJUNEJUNE_ALLOW_GUEST_INFERENCE=1 80 # The local stack generates and persists LITELLM_MASTER_KEY into the ignored
81 # .config on the first live run if this is left empty.
82 LITELLM_MASTER_KEY=
83 LITELLM_HOST=127.0.0.1
84 LITELLM_PORT=4000
85 LITELLM_MODEL=jrpg-copilot
86 LITELLM_WIRE_API=completions
87 MRJUNEJUNE_ALLOW_GUEST_INFERENCE=false
88 # GITHUB_COPILOT_TOKEN_DIR=/absolute/path/to/litellm-copilot
89 # MRJUNEJUNE_INFERENCE_STATE=/absolute/path/to/inference-state
90 #
91 # Guest inference quota
79 # These integer values control per-guest rate limits. 92 # These integer values control per-guest rate limits.
80 # Malformed or out-of-range values cause startup failure. 93 # Malformed or out-of-range values cause startup failure.
81 # AUTH_GUEST_DAILY_TURNS=10 94 # AUTH_GUEST_DAILY_TURNS=10
82 # AUTH_GUEST_DAILY_OUTPUT_TOKENS=20000 95 # AUTH_GUEST_DAILY_OUTPUT_TOKENS=20000
83 # AUTH_GUEST_REQUEST_OUTPUT_TOKENS=2048 96 # AUTH_GUEST_REQUEST_OUTPUT_TOKENS=2048