Reorganize the brownfield repository, remove retired and generated artifacts, harden ignore rules, and record the GitOps/IaC redesign.
25 lines
753 B
Bash
25 lines
753 B
Bash
# Codex Proxy Configuration
|
|
# Copy this file to .env and edit values as needed: cp .env.example .env
|
|
|
|
# Optional: paste ChatGPT JWT to skip OAuth login (leave empty to use OAuth)
|
|
CODEX_JWT_TOKEN=
|
|
|
|
# Platform: linux for Docker, darwin for macOS, win32 for Windows
|
|
CODEX_PLATFORM=linux
|
|
|
|
# Architecture: x64 for Docker/Intel, arm64 for Apple Silicon
|
|
CODEX_ARCH=x64
|
|
|
|
# Server port
|
|
PORT=8080
|
|
|
|
# Optional built-in Ollama-compatible bridge.
|
|
# Leave blank to use config/default.yaml + data/local.yaml values.
|
|
# For Docker with published port 11434, set host to 0.0.0.0 inside the
|
|
# container and bind the compose port to 127.0.0.1 on the host.
|
|
OLLAMA_BRIDGE_ENABLED=
|
|
OLLAMA_BRIDGE_HOST=
|
|
OLLAMA_BRIDGE_PORT=
|
|
OLLAMA_BRIDGE_VERSION=
|
|
OLLAMA_BRIDGE_DISABLE_VISION=
|