Home

tmpl @main - refs - log -
-
https://git.jolheiser.com/tmpl.git
Template automation
tmpl / cmd / app.go
- raw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package cmd

import (
	"os"
	"path/filepath"

	"github.com/rs/zerolog/log"
	"github.com/urfave/cli/v2"
)

var (
	Version    = "develop"
	defaultDir string

	registryFlag string
	sourceFlag   string
)

func init() {
	home, err := os.UserHomeDir()
	if err != nil {
		log.Error().Msg("could not locate user's home directory, tmpl will use temp dir for registry")
		defaultDir = filepath.Join(os.TempDir(), ".tmpl")
		return
	}
	defaultDir = filepath.Join(home, ".tmpl")
}

func NewApp() *cli.App {
	app := cli.NewApp()
	app.Name = "tmpl"
	app.Usage = "Template automation"
	app.Description = "Template automation"
	app.Version = Version
	app.Flags = []cli.Flag{
		&cli.StringFlag{
			Name:        "registry",
			Aliases:     []string{"r"},
			Usage:       "Registry directory of tmpl",
			Value:       defaultDir,
			DefaultText: "~/.tmpl",
			Destination: &registryFlag,
			EnvVars:     []string{"TMPL_REGISTRY"},
		},
		&cli.StringFlag{
			Name:        "source",
			Aliases:     []string{"s"},
			Usage:       "Short-name source to use",
			Destination: &sourceFlag,
			EnvVars:     []string{"TMPL_SOURCE"},
		},
	}

	app.Commands = []*cli.Command{
		Download,
		Env,
		Init,
		List,
		Remove,
		Restore,
		Save,
		Source,
		Test,
		Update,
		Use,
	}

	return app
}