package commands

import "os"

var rootHelp = os.ExpandEnv(`
localdev is a helper tool to make managing your local development easier.

Configuration:

By default, localdev assumes that the local dev clone lives at

	${HOME}/code/contiamo/dev

But this can be overridden by the environment variable CTMO_LOCALDEVROOT, currently

	CTMO_LOCALDEVROOT="${CTMO_LOCALDEVROOT}"

You can also set this value via the configuration path ${HOME}/.config/contiamo/localdev.yaml

	localdevRoot=/desired/abs/path

Use "localdev init /desired/abs/path" to configure this file.

See "localdev help start" for more options and details.
`)

var rootExamples = `
  Getting Started:

	localdev init <path/you/want/to/clone/to>
	localdev docker-auth
	localdev restore

  Start and stop the environment:

	localdev start
	localdev logs hub
	localdev stop
`

var initExamples = `
Start a new localdev environment

	localdev init /desired/path

Configure localdev with an existing clone

	localdev init -s /path/to/existing/clone

`
