[SIMPL-28408] Added readme.
Changelog: added
This commit is contained in:
26
README.md
26
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:
|
||||
|
||||
Reference in New Issue
Block a user