Config
sereto.cli.config
¶
add_dates_config(config, version=None, non_interactive=False, date_type=None, start_date=None, end_date=None)
¶
Add date to the configuration.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config
|
Config
|
Configuration of the project. |
required |
version
|
ProjectVersion | None
|
The version of the project. If not provided, the last version is used. |
None
|
non_interactive
|
bool
|
If True, run non-interactively; fail if required inputs are missing. |
False
|
date_type
|
DateType | None
|
The type of the date event. |
None
|
start_date
|
str | None
|
The start date str in DD-Mmm-YYYY format. |
None
|
end_date
|
str | None
|
The end date str in DD-Mmm-YYYY format. |
None
|
Source code in sereto/cli/config.py
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 | |
add_people_config(config, version=None, non_interactive=False, person_type=None, person_name=None, business_unit=None, email=None, role=None)
¶
Add person to the configuration.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config
|
Config
|
Configuration of the project. |
required |
version
|
ProjectVersion | None
|
The version of the project. If not provided, the last version is used. |
None
|
non_interactive
|
bool
|
If True, run non-interactively; fail if required inputs are missing. |
False
|
person_type
|
PersonType | None
|
The type of the person. |
None
|
person_name
|
str | None
|
The name of the person. |
None
|
business_unit
|
str | None
|
The business unit of the person. |
None
|
email
|
str | None
|
The email address of the person. |
None
|
role
|
str | None
|
The role of the person. |
None
|
Source code in sereto/cli/config.py
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 | |
add_target(project_path, templates, config, categories, version=None, non_interactive=False, category=None, target_name=None, extra_json=None)
¶
Add target to the configuration.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
project_path
|
DirectoryPath
|
Path to the project directory. |
required |
templates
|
DirectoryPath
|
Path to the templates directory. |
required |
config
|
Config
|
Configuration of the project. |
required |
categories
|
Iterable[str]
|
List of all categories. |
required |
version
|
ProjectVersion | None
|
The version of the project. If not provided, the last version is used. |
None
|
non_interactive
|
bool
|
If True, run non-interactively; fail if required inputs are missing. |
False
|
category
|
str | None
|
Category of the target. |
None
|
target_name
|
str | None
|
Name of the target. |
None
|
extra_json
|
str | None
|
Extra target fields as a JSON string. |
None
|
Source code in sereto/cli/config.py
405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 | |
delete_target(config, index, version=None, interactive=False)
¶
Delete target from the configuration by its index.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config
|
Config
|
Configuration of the project. |
required |
index
|
int
|
Index to item which should be deleted. First item is 1. |
required |
version
|
ProjectVersion | None
|
The version of the project. If not provided, the last version is used. |
None
|
interactive
|
bool
|
Whether to ask for confirmations. |
False
|
Source code in sereto/cli/config.py
505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 | |
edit_config(project, non_interactive=False, extra_json=None)
¶
Edit the configuration file in default CLI editor.
When non_interactive is True, the config is updated from extra_json without opening an editor.
Otherwise, the config file is opened in the default editor.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
project
|
Project
|
Project's representation. |
required |
non_interactive
|
bool
|
If True, run non-interactively. |
False
|
extra_json
|
str | None
|
A JSON string with config fields to update. |
None
|
Source code in sereto/cli/config.py
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | |
show_config(config, output_format, all=False, version=None)
¶
Display the configuration for a project.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config
|
Config
|
Configuration of the project. |
required |
output_format
|
OutputFormat
|
Format of the output. |
required |
all
|
bool
|
Whether to show values from all versions or just the last one. |
False
|
version
|
ProjectVersion | None
|
Show config at specific version, e.g. 'v1.0'. |
None
|
Source code in sereto/cli/config.py
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 | |
show_dates_config(config, output_format, all, version)
¶
Display the configured dates.
By default, if neither of version and all arguments are used, dates from the latest version are displayed.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config
|
Config
|
Configuration of the project. |
required |
output_format
|
OutputFormat
|
Select format of the output. |
required |
all
|
bool
|
Show dates from all versions. |
required |
version
|
ProjectVersion | None
|
Show dates from specific version. |
required |
Source code in sereto/cli/config.py
224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 | |
show_people_config(config, output_format, all, version)
¶
Display the configured people.
By default, if neither of version and all arguments are used, people from the latest version are displayed.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config
|
Config
|
Configuration of the project. |
required |
output_format
|
OutputFormat
|
Select format of the output. |
required |
all
|
bool
|
Show people from all versions. |
required |
version
|
ProjectVersion | None
|
Show people from specific version. |
required |
Source code in sereto/cli/config.py
365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 | |
show_targets_config(config, output_format, all, version)
¶
Display the configured targets.
By default, if neither of version and all arguments are used, targets from the latest version are displayed.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config
|
Config
|
Configuration of the project. |
required |
output_format
|
OutputFormat
|
Select format of the output. |
required |
all
|
bool
|
Show targets from all versions. |
required |
version
|
ProjectVersion | None
|
Show targets from the specified project's version. |
required |
Source code in sereto/cli/config.py
555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 | |