You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The available CLI commands (mapped below) would benefit from a rationalisation- tiled serve catalog and tiled catalog serve are both allowed, but tiled serve directory does not have an equivalent tiled directory serve- there are two commands seperately maintained for initializing, upgrading and downgrading a database: tiled catalog <database function> and tiled admin <database function>.
flowchart LR
tiled{tiled} --> user{user}
user --> logout
user --> login
user --> whoami
tiled --> tree
tiled --> register
tiled --> check_config
tiled --> admin{admin}
admin --> database{database}
database --> init
database --> upgrade
database --> downgrade
admin --> principal{principal}
principal --> show_principal(show)
principal --> list_principal(list)
admin --> api_key{api_key}
api_key --> revoke
api_key --> create_api_key(create)
api_key --> list
tiled --> profile{profiles}
profile --> paths
profile --> show
profile --> list_profiles(list)
profile --> edit
profile --> create_profile(create)
profile --> delete
profile --> default{default}
default --> get
default --> set
default --> clear
tiled --> serve{serve}
serve --> demo
serve --> directory
serve --> catalog
serve --> pyobject
serve --> config
Loading
This removes the duplicate route for tiled catalog serve in favour of consistency. Moves commands generally but especially within the admin namespace to be more hierarchical.
Each node can then have a help string attached to it for the commands directly underneath it while remaining fairly wieldy (ant. unwieldy).
The text was updated successfully, but these errors were encountered:
The available CLI commands (mapped below) would benefit from a rationalisation-
tiled serve catalog
andtiled catalog serve
are both allowed, buttiled serve directory
does not have an equivalenttiled directory serve
- there are two commands seperately maintained for initializing, upgrading and downgrading a database:tiled catalog <database function>
andtiled admin <database function>
.proposed new structure:
This removes the duplicate route for tiled catalog serve in favour of consistency. Moves commands generally but especially within the admin namespace to be more hierarchical.
Each node can then have a help string attached to it for the commands directly underneath it while remaining fairly wieldy (ant. unwieldy).
The text was updated successfully, but these errors were encountered: