Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func DefaultConfigPath ¶
DefaultConfigPath returns the absolute default path for the project config file, if possible.
The default path is determined by the FTL_CONFIG environment variable, if set, or by the presence of a Git repository. If the Git repository is found, the default path is the root of the repository with the filename "ftl-project.toml".
Types ¶
type Config ¶
type Config struct { // Path to the config file. Path string `toml:"-"` Name string `toml:"name"` Global ConfigAndSecrets `toml:"global"` Modules map[string]ConfigAndSecrets `toml:"modules"` ModuleDirs []string `toml:"module-dirs"` Commands Commands `toml:"commands"` FTLMinVersion string `toml:"ftl-min-version"` Hermit bool `toml:"hermit"` NoGit bool `toml:"no-git"` }
func (Config) AbsModuleDirs ¶
AbsModuleDirs returns the absolute path for the module-dirs field from the ftl-project.toml, unless that is not defined, in which case it defaults to the root directory.
type ConfigAndSecrets ¶
type URL ¶
A URL that supports marshalling and unmarshalling which is, very frustratingly, not possible with the stdlib url.URL.
func MustParseURL ¶
func (URL) MarshalText ¶
func (*URL) UnmarshalText ¶
Click to show internal directories.
Click to hide internal directories.