Config
config
Attributes
DEFAULT_TEMPLATE
module-attribute
Classes
BaseConfig
Bases: RompyBaseModel
Base class for model templates.
The template class provides the object that is used to set up the model configuration. When implemented for a given model, can move along a scale of complexity to suit the application.
In its most basic form, as implemented in this base object, it consists of path to a cookiecutter template with the class providing the context for the {{config}} values in that template. Note that any {{runtime}} values are filled from the ModelRun object.
If the template is a git repo, the checkout parameter can be used to specify a branch or tag and it will be cloned and used.
If the object is callable, it will be colled prior to rendering the template. This mechanism can be used to perform tasks such as fetching exteral data, or providing additional context to the template beyond the arguments provided by the user..
Source code in rompy/core/config.py
Attributes
template
class-attribute
instance-attribute
template: Optional[str] = Field(description='The path to the model template', default=DEFAULT_TEMPLATE)
checkout
class-attribute
instance-attribute
checkout: Optional[str] = Field(description='The git branch to use if the template is a git repo', default='main')
Methods:
render
Render the configuration template to the output directory.
This method orchestrates the template rendering process. The default implementation uses cookiecutter rendering with the template and checkout defined on this config. Subclasses can override this method to implement alternative rendering strategies (e.g., direct file writing, Jinja2, custom logic).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
context
|
dict
|
Full context dictionary. Expected to contain at least 'runtime' and 'config' keys. |
required |
output_dir
|
Path | str
|
Target directory for rendered output. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
str |
Path to the staging directory (workspace) containing rendered files. |