28 lines
976 B
Python
28 lines
976 B
Python
DCOS_DIR = ".dcos"
|
|
"""DCOS data directory. Can store subcommands and the config file."""
|
|
|
|
DCOS_SUBCOMMAND_VIRTUALENV_SUBDIR = 'env'
|
|
"""In a package's directory, this is the virtualenv subdirectory."""
|
|
|
|
DCOS_SUBCOMMAND_SUBDIR = 'subcommands'
|
|
"""Name of the subdirectory that contains all of the subcommands. This is
|
|
relative to the location of the executable."""
|
|
|
|
DCOS_CONFIG_ENV = 'DCOS_CONFIG'
|
|
"""Name of the environment variable pointing to the DCOS config."""
|
|
|
|
DCOS_LOG_LEVEL_ENV = 'DCOS_LOG_LEVEL'
|
|
"""Name of the environment variable for the DCOS log level"""
|
|
|
|
DCOS_PAGER_COMMAND_ENV = 'PAGER'
|
|
"""Command to use to page long command output (e.g. 'less -R')"""
|
|
|
|
PATH_ENV = 'PATH'
|
|
"""Name of the environment variable pointing to the executable directories."""
|
|
|
|
DCOS_COMMAND_PREFIX = 'dcos-'
|
|
"""Prefix for all the DCOS CLI commands."""
|
|
|
|
VALID_LOG_LEVEL_VALUES = ['debug', 'info', 'warning', 'error', 'critical']
|
|
"""List of all the supported log level values for the CLIs"""
|