Documentation ¶
Index ¶
- func Realpath(path string) (string, error)
- type Environment
- type Paths
- func (p Paths) BasePath() string
- func (p Paths) BinPath() string
- func (p Paths) IndexBase() string
- func (p Paths) IndexPath(name string) string
- func (p Paths) IndexPluginsPath(name string) string
- func (p Paths) InstallPath() string
- func (p Paths) InstallReceiptsPath() string
- func (p Paths) PluginInstallPath(plugin string) string
- func (p Paths) PluginInstallReceiptPath(plugin string) string
- func (p Paths) PluginVersionInstallPath(plugin, version string) string
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Environment ¶
type Environment interface { BasePath() string IndexBase() string IndexPath(name string) string IndexPluginsPath(name string) string InstallReceiptsPath() string BinPath() string InstallPath() string PluginInstallPath(plugin string) string PluginInstallReceiptPath(plugin string) string PluginVersionInstallPath(plugin, version string) string }
type Paths ¶
type Paths struct {
// contains filtered or unexported fields
}
Paths contains all important environment paths
func MustGetApmPaths ¶
MustGetApmPaths returns the inferred paths for apm. By default, it assumes $HOME/.ankor as the base path, but can be overridden via APM_ROOT environment variable.
func (Paths) BinPath ¶
BinPath returns the path where plugin executable symbolic links are found. This path should be added to $PATH in client machine.
e.g. {HOME}/.local/bin
func (Paths) IndexBase ¶
IndexBase returns the apm index directory. This directory contains the default index and custom ones.
func (Paths) IndexPath ¶
IndexPath returns the directory where a plugin index repository is cloned. e.g. {BasePath}/index/default or {BasePath}/index
func (Paths) IndexPluginsPath ¶
IndexPluginsPath returns the plugins directory of an index repository. e.g. {BasePath}/index/default/plugins/ or {BasePath}/index/plugins/
func (Paths) InstallPath ¶
InstallPath returns the base directory for plugin installations.
e.g. {BasePath}/store
func (Paths) InstallReceiptsPath ¶
InstallReceiptsPath returns the base directory where plugin receipts are stored.
e.g. {BasePath}/receipts
func (Paths) PluginInstallPath ¶
PluginInstallPath returns the path to install the plugin.
e.g. {InstallPath}/{version}/{..files..}
func (Paths) PluginInstallReceiptPath ¶
PluginInstallReceiptPath returns the path to the installation receipt for plugin.
e.g. {InstallReceiptsPath}/{plugin}.yaml
func (Paths) PluginVersionInstallPath ¶
PluginVersionInstallPath returns the path to the specified version of specified plugin. e.g. {PluginInstallPath}/{plugin}/{version}