Generate the project architecture

How to use the specs.yaml to generate the project architecture

The specs.yaml configuration file can be used to easily create the scaffoldings of the Python project architecture. Here's how to do it:

wf_client generate --from-specs specs.yaml

Which should create all the files needed to run the project.

workflow_v2
├── specs.yaml
├── .specs.yaml
├── task_groups
│   ├── __init__.py
│   ├── closing_read.py
│   └── post_install.py
└── utils
    └── __init__.py

Last updated

Was this helpful?