Project
Project
Active
Let Custy detect the project source, or select an explicit source directory.
Command
[tool.custy.project]Category
Configuration
Quick Command
project_source = "auto"Propertiesâ
Properties
| Property | Type | Description | Default | Required |
|---|---|---|---|---|
project_source | Path string or auto | Use auto for runtime discovery, or set an explicit directory relative to the project root. Explicit paths must exist and must be directories. | auto | No |
Examples
Automatic detection (recommended)
toml[tool.custy.project]
project_source = "auto"Explicit layouts
toml[tool.custy.project]
project_source = "src"
# Other valid paths can include:
# project_source = "backend"
# project_source = "services/api"