Documentation ¶
Index ¶
- Variables
- func AppRoot() (appRoot, relPath string)
- func AppSlug() string
- func AutoCompleteAppSlug(cmd *cobra.Command, _ []string, toComplete string) ([]string, cobra.ShellCompDirective)
- func AutoCompleteEnvSlug(cmd *cobra.Command, args []string, toComplete string) (rtn []string, dir cobra.ShellCompDirective)
- func AutoCompleteFromStaticList(args ...string) ...
- func ConnectDaemon(ctx context.Context) daemonpb.DaemonClient
- func DisplayError(out *os.File, err []byte)
- func Fatal(args ...any)
- func Fatalf(format string, args ...any)
- func MaybeAppRoot() (appRoot, relPath string, err error)
- func StartDaemonInBackground(ctx context.Context) error
- func StopDaemon()
- type Oneof
Constants ¶
This section is empty.
Variables ¶
var ( ErrNoEncoreApp = errors.New("no encore.app found in directory (or any of the parent directories)") ErrEncoreAppIsDir = errors.New("encore.app is a directory, not a file") )
var Newline string
Functions ¶
func AppRoot ¶
func AppRoot() (appRoot, relPath string)
AppRoot is like MaybeAppRoot but instead of returning an error it prints it to stderr and exits.
func AppSlug ¶
func AppSlug() string
AppSlug reports the current app's app slug. It throws a fatal error if the app is not connected with the Encore Platform.
func AutoCompleteAppSlug ¶ added in v1.13.1
func AutoCompleteEnvSlug ¶ added in v1.13.1
func AutoCompleteFromStaticList ¶ added in v1.13.1
func ConnectDaemon ¶
func ConnectDaemon(ctx context.Context) daemonpb.DaemonClient
ConnectDaemon sets up the Encore daemon if it isn't already running and returns a client connected to it.
func DisplayError ¶
func MaybeAppRoot ¶ added in v1.25.1
MaybeAppRoot determines the app root by looking for the "encore.app" file, initially in the current directory and then recursively in parent directories up to the filesystem root.
It reports the absolute path to the app root, and the relative path from the app root to the working directory.
func StartDaemonInBackground ¶
StartDaemonInBackground starts the Encore daemon in the background.
func StopDaemon ¶
func StopDaemon()
Types ¶
type Oneof ¶ added in v1.25.0
type Oneof struct { Value string Allowed []string Flag string // defaults to "output" if empty FlagShort string // defaults to "o" if both Flag and FlagShort are empty Desc string // usage desc TypeDesc string // type description, defaults to the name of the flag }
func (*Oneof) Alternatives ¶ added in v1.25.0
Alternatives lists the alternatives in the format "a|b|c".