Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Configuration
Leonard Ramminger edited this page Aug 9, 2026
·
1 revision
Beez settings are Lua tables. You can split them between a global user file, a project file, environment variables, and CLI flags. Only set what you need; everything else keeps its default.
- Configuration Overview - how layers merge and how to inspect the result
- Global User Config -
~/.config/beez/config.lua - Project Config -
beez.config()andconfig.lua - Environment Variables -
.env,env.vars, cache fingerprints, secrets - Performance Settings - threads, cache writes, hashing
- Cache Settings - path, hash, compression
- UI and Output - output modes, themes, progress, summaries, logs
- Config Reference - all keys at a glance
beez --show-config # print merged active settings
beez --config-options # list top-level config keys
beez --config-options cache.compress.algorithm # list allowed enum valuesA full annotated example lives in the Beez repository at scripts/config.lua.example.
- Project Layout - where
config.luaand.envlive - Caching - how cache settings affect skip behavior
Quick Reference · Glossary · FAQ
- Fundamentals
- Core Concepts
- Project Layout
- First Pipeline
- Phases and Scopes
- How Phases and Scopes Work
- Selecting with Phases and Scopes
- Designing Phases and Scopes
- Parallel Execution and Dependencies
- Configuration
- Configuration Overview
- Global User Config
- Project Config
- Environment Variables
- Performance Settings
- Cache Settings
- Config Reference
- CLI
- CLI Overview
- Running Targets
- Filtering by Phase
- Running a Single Step
- Listing Entities
- Output and Logging Flags
- Cache and Maintenance Flags
- Meta and Utility Commands
- Project Scaffolding —
beez --init(embedded Tempify) - CLI Flag Reference
- Lua DSL
- DSL Overview
- Plugin System — Plugins, Config DSL, Standard-Workflows
- Step Declaration
- Task Declaration
- Workflow Declaration
- Order Declaration
- Configure Step
- ReqPack Declaration
- Beez API
- Step Context
- DSL Patterns
- Caching
- Caching Overview
- Step Cache
- Success Cache
- Glob Metadata Cache
- Artifact Patterns
- Cache Keys and Invalidation
- Cache Storage and Maintenance
- Caching Troubleshooting
- Development and Contribution
- Building and Setup
- Repository Layout
- Testing
- Code Quality
- Feature Development Workflow
- Submitting Changes