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
|
package cmd
import (
"os"
"path/filepath"
"go.jolheiser.com/tmpl/cmd/flags"
"github.com/urfave/cli/v2"
"go.jolheiser.com/beaver"
)
var (
Version = "develop"
defaultDir string
)
func init() {
home, err := os.UserHomeDir()
if err != nil {
beaver.Error("could not locate user's home directory, tmpl will use temp dir for registry")
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: &flags.Registry,
EnvVars: []string{"TMPL_REGISTRY"},
},
&cli.StringFlag{
Name: "source",
Aliases: []string{"s"},
Usage: "Short-name source to use",
Destination: &flags.Source,
EnvVars: []string{"TMPL_SOURCE"},
},
}
app.Commands = []*cli.Command{
Download,
Env,
Init,
List,
Remove,
Restore,
Save,
Source,
Test,
Update,
Use,
}
return app
}
|