# Server port used by `npm run dev` / `npm start` (defaults to 3011) PORT=3011 # true: if PORT is in use, keep incrementing until a free port is found AUTO_INCREMENT_PORT=true # true: include existing .md files at startup, false: only track newly created files after startup LOAD_EXISTING_MD=true # Comma-separated quoted path substrings to exclude from results # Example: "checkpoints/index.md","tmp/","node_modules/" EXCLUDE_PATTERN='"checkpoints/index.md"' # Maximum number of most recently updated files sent to the frontend FILE_MAX_LIMIT=20 # Comma-separated list of extra flags appended to every copilot CLI invocation # Example: --flag1,--flag2 COPILOT_FLAGS= # Comma-separated list of Copilot CLI model names available in the Prompt app # Example: gpt-4.1,claude-opus-4-5,o3 COPILOT_MODELS=claude-opus-4.5, gpt-5.3-codex # Default model used for CLI spawning when no model is explicitly selected # Must be one of the models listed in COPILOT_MODELS (if COPILOT_MODELS is set) # Example: claude-opus-4.5 COPILOT_DEFAULT_MODEL= # Extra flags appended to every `copilot -p ` invocation (space-separated) # Example: --no-auto-approve --timeout 300 COPILOT_FLAGS= # Directory (relative to cwd) used by commands to store files (defaults to .md-copilot-viewer) STORE_DIR=.md-copilot-viewer