Config
sereto.cli.config
¶
add_dates_config(project, version=None)
¶
Add date to the configuration.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
project
|
Project
|
Project's representation. |
required |
version
|
ProjectVersion | None
|
The version of the project. If not provided, the last version is used. |
None
|
Source code in sereto/cli/config.py
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 |
|
add_people_config(project, version=None)
¶
Add person to the configuration.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
project
|
Project
|
Project's representation. |
required |
version
|
ProjectVersion | None
|
The version of the project. If not provided, the last version is used. |
None
|
Source code in sereto/cli/config.py
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 |
|
add_targets_config(project, version=None)
¶
Add target to the configuration.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
project
|
Project
|
Project's representation. |
required |
version
|
ProjectVersion | None
|
The version of the project. If not provided, the last version is used. |
None
|
Source code in sereto/cli/config.py
335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 |
|
delete_dates_config(project, index, version=None)
¶
Delete date from the configuration by its index.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
project
|
Project
|
Project's representation. |
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
|
Source code in sereto/cli/config.py
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 |
|
delete_people_config(project, index, version=None)
¶
Delete person from the configuration by its index.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
project
|
Project
|
Project's representation. |
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
|
Source code in sereto/cli/config.py
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 |
|
delete_targets_config(project, index, version=None, interactive=False)
¶
Delete target from the configuration by its index.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
project
|
Project
|
Project's representation. |
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
360 361 362 363 364 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 |
|
edit_config(settings)
¶
Edit the configuration file in default CLI editor.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
settings
|
Settings
|
Global settings. |
required |
Source code in sereto/cli/config.py
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
|
show_config(project, output_format, all=False, version=None)
¶
Display the configuration for a project.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
project
|
Project
|
Project's representation. |
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
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 97 98 99 100 101 |
|
show_dates_config(project, 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 |
---|---|---|---|
project
|
Project
|
Project's representation. |
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
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 |
|
show_people_config(project, 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 |
---|---|---|---|
project
|
Project
|
Project's representation. |
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
290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 |
|
show_targets_config(project, 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 |
---|---|---|---|
project
|
Project
|
Project's representation. |
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
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 448 |
|