Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Create ¶ added in v0.260.0
Create creates the ftl-project.toml file with the given Config into dir.
func DefaultConfigPath ¶ added in v0.242.0
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:"-"` 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 LoadOrCreate ¶ added in v0.255.0
LoadOrCreate loads or creates the given configuration file.
func (Config) AbsModuleDirs ¶ added in v0.255.0
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.