[SIMPL-28408] Added readme.

Changelog: added
This commit is contained in:
ILay
2026-06-03 15:05:43 +02:00
parent b19182d1d7
commit 5760f9424a

View File

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