Configuration
Initialize and manage workspace configuration for the Indexed CLI.
Configuration
Initialize
# Interactive
indexed config init
# Defaults, no prompts
indexed config init --yesCreates .indexed/config.toml.
Edit and Inspect
# View
indexed config inspect
indexed config inspect --json
# Set and preview
indexed config set core.v1.indexing.chunk_size 1024 --dry-run
indexed config set core.v1.indexing.chunk_size 1024
# Delete and validate
indexed config delete core.v1.indexing.chunk_overlap
indexed config validateEnvironment Overrides
# INDEXED__section__sub__key=value
export INDEXED__core__v1__indexing__chunk_size=1024
export INDEXED__core__v1__embedding__model_name="all-MiniLM-L6-v2"Store secrets (e.g., Atlassian tokens) in a local
.env that is gitignored.