Skip to main content

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"

source discoverypath validationproject root

Properties​

Properties

PropertyTypeDescriptionDefaultRequired
project_sourcePath string or autoUse auto for runtime discovery, or set an explicit directory relative to the project root. Explicit paths must exist and must be directories.autoNo

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"

Continue