burner config
View and update Burner configuration settings.
burner config [options]
Options
| Option | Description |
|---|---|
--home <PATH> |
Set the burner home directory |
--templates <PATH> |
Set the burner templates directory |
--auto-clean-days <DAYS> |
Set cleanup threshold (0 to disable) |
--editor <EDITOR> |
Set default editor command |
--show |
Show current configuration |
--path |
Show config file path |
--open-templates |
Open templates directory in file explorer |
--open-home |
Open burner home directory in file explorer |
Examples
# Show current config
burner config
# Set burner home directory
burner config --home ~/projects
# Set templates directory
burner config --templates ~/tpl
# Set cleanup threshold
burner config --auto-clean-days 60
# Set editor
burner config --editor cursor
# Open burner home in explorer
burner config --open-home
# Open templates dir in explorer
burner config --open-templates
Configuration Options
| Setting | Description | Default |
|---|---|---|
burnerHome |
Where new projects are created | ~/.burner/projects |
burnerTemplates |
Where custom template scripts are stored | ~/.burner/templates |
autoCleanDays |
Auto-remove projects older than this (0 to disable) | 30 |
editor |
Default editor command for opening projects | code |
Config File
Configuration is stored at ~/.burner/config.json:
{
"burnerHome": "~/.burner/projects",
"burnerTemplates": "~/.burner/templates",
"autoCleanDays": 30,
"editor": "code"
}