[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
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: