33 lines
584 B
TOML
33 lines
584 B
TOML
|
|
# CLI Backend - Development Configuration
|
||
|
|
# Extended configuration for development and testing
|
||
|
|
|
||
|
|
[form]
|
||
|
|
title = "CLI Form (Dev)"
|
||
|
|
description = "Development CLI form with debugging enabled"
|
||
|
|
|
||
|
|
[form.validation]
|
||
|
|
validate_on_change = true
|
||
|
|
show_errors_inline = true
|
||
|
|
strict_validation = true
|
||
|
|
|
||
|
|
[output]
|
||
|
|
format = "json"
|
||
|
|
pretty_print = true
|
||
|
|
debug_output = true
|
||
|
|
|
||
|
|
[terminal]
|
||
|
|
use_raw_mode = true
|
||
|
|
enable_mouse = true
|
||
|
|
use_color = true
|
||
|
|
|
||
|
|
[appearance]
|
||
|
|
theme = "default"
|
||
|
|
show_help = true
|
||
|
|
show_placeholders = true
|
||
|
|
show_field_types = true
|
||
|
|
|
||
|
|
[debug]
|
||
|
|
enabled = true
|
||
|
|
trace_execution = false
|
||
|
|
log_level = "info"
|