update default config file
This commit is contained in:
parent
0df0c60013
commit
46261bdfa0
1 changed files with 11 additions and 4 deletions
|
@ -34,13 +34,20 @@ groups:
|
||||||
routes:
|
routes:
|
||||||
# /ls is the only page that comes with bunbun besides the homepage. This
|
# /ls is the only page that comes with bunbun besides the homepage. This
|
||||||
# page provides a full list of routes and their groups they're in.
|
# page provides a full list of routes and their groups they're in.
|
||||||
ls: &ls "/ls"
|
ls: &ls
|
||||||
|
path: "/ls"
|
||||||
|
# You can specify a maximum number of arguments, which are string
|
||||||
|
# delimited strings.
|
||||||
|
max_args: 0
|
||||||
|
# You can also specify a minimum amount of arguments.
|
||||||
|
# min_args: 1
|
||||||
help:
|
help:
|
||||||
# Bunbun supports all standard YAML features, so things like YAML pointers
|
path: &ls "/ls"
|
||||||
# and references are supported.
|
max_args: 0
|
||||||
path: *ls
|
|
||||||
# Paths can be hidden from the listings page if desired.
|
# Paths can be hidden from the listings page if desired.
|
||||||
hidden: true
|
hidden: true
|
||||||
|
# Bunbun supports all standard YAML features, so things like YAML pointers
|
||||||
|
# and references are supported.
|
||||||
list: *ls
|
list: *ls
|
||||||
-
|
-
|
||||||
# This is another group without a description
|
# This is another group without a description
|
||||||
|
|
Loading…
Reference in a new issue