31 lines
609 B
TOML
31 lines
609 B
TOML
|
|
# CLI Backend - Default Configuration
|
||
|
|
# Used for standard command-line form rendering
|
||
|
|
|
||
|
|
[form]
|
||
|
|
title = "CLI Form"
|
||
|
|
description = "Standard command-line interface form"
|
||
|
|
|
||
|
|
[form.validation]
|
||
|
|
validate_on_change = true
|
||
|
|
show_errors_inline = true
|
||
|
|
|
||
|
|
[output]
|
||
|
|
format = "json"
|
||
|
|
pretty_print = true
|
||
|
|
|
||
|
|
[terminal]
|
||
|
|
# Use raw mode for better terminal control
|
||
|
|
use_raw_mode = true
|
||
|
|
# Enable mouse support if available
|
||
|
|
enable_mouse = false
|
||
|
|
# Use color output
|
||
|
|
use_color = true
|
||
|
|
|
||
|
|
[appearance]
|
||
|
|
# Theme: default, monochrome, dark
|
||
|
|
theme = "default"
|
||
|
|
# Show field help text
|
||
|
|
show_help = true
|
||
|
|
# Show field placeholders
|
||
|
|
show_placeholders = true
|