hyperctl data ls
command
Overview
The hyperctl data ls
command is used to list website global data namespaces.
Usage
1$ hyperctl data ls -h
2List global data namespaces.
3
4Usage:
5 hyperctl data ls [options]
6
7Options:
8 -c, --config path to the website configuration file. (required) (env: HYPER_CONFIG) (default: site.yaml)
9 -h, --help Display help information.
Example
Use the hyperctl data ls
command to list available namespaces.
1$ hyperctl data ls
2Namespace Size
3--------- ----
4newsletter 163
5twitter 44
6customers 925
7downloads 18
8nav 1455
Options
-c
,--config
- Path to the website configuration file (
site.yaml
orsite.json
).Defaults to the
HYPER_CONFIG
environment variable, if set.To configure a default, use the
export
command.1export HYPER_CONFIG="site.yaml"