diff --git a/README.md b/README.md index b2faf7e..bbc476a 100644 --- a/README.md +++ b/README.md @@ -49,21 +49,17 @@ This template is not meant to contain business-specific logic by default. Provid ```text template-code-location/ -|- src/ -| \- template_code_location/ -| |- __init__.py -| |- repository.py -| |- jobs/ -| | |- __init__.py -| | \- jobs.py -| \- ops/ -| |- __init__.py -| \- ops.py -|- documents/ -|- Dockerfile -|- pyproject.toml -|- uv.lock -\- README.md +├── src/ +│ └── template_code_location/ +│ ├── repository.py # Unified entry point (all jobs/sensors/resources) +│ ├── jobs/ # Custom jobs specific to this code location +│ │ └── jobs.py +│ └── ops/ # Custom ops specific to this code location +│ └── ops.py +├── tests/ # Unit & integration tests +├── Dockerfile +├── pyproject.toml # Dependencies & external package sources +└── README.md ``` Key files: