18 lines
611 B
TOML
18 lines
611 B
TOML
[app]
|
|
name = "PageTop Application"
|
|
description = "Developed with the amazing PageTop framework."
|
|
# Idioma (localización) predeterminado.
|
|
language = "en-US"
|
|
# Tema predeterminado.
|
|
theme = "Minimal"
|
|
# Rótulo al inicio: "Off", "Slant", "Small", "Speed" o "Starwars".
|
|
startup_banner = "Small"
|
|
# Traza de la ejecución: "Error", "Warn", "Info", "Debug" o "Trace".
|
|
# Ejemplos: "Error,actix_server::builder=Info,tracing_actix_web=Debug".
|
|
tracing = "Info"
|
|
|
|
[webserver]
|
|
# Configuración opcional del servidor web.
|
|
# Usar bind_address = "" para deshabilitar el servidor web.
|
|
bind_address = "localhost"
|
|
bind_port = 8088
|