Configuration¶
Biofilter resolves settings from:
command-line options (highest priority)
environment variables (
DATABASE_URLorBIOFILTER_DB_URI).biofilter.tomlinternal defaults
Common Commands¶
Show resolved config:
biofilter config show
Get one value:
biofilter config get database.db_uri
Set one value:
biofilter config set database.db_uri "sqlite:///biofilter_dev.db"
Initialize template:
biofilter config init --path .
Typical Keys¶
database.db_urietl.data_root
Tips¶
Prefer
--db-uriin CI or one-off commands.Prefer
DATABASE_URLin containers and orchestrators.Prefer
.biofilter.tomlfor local development defaults.