@@ -15,6 +15,20 @@ import (
15
15
"google.golang.org/protobuf/proto"
16
16
)
17
17
18
+ const (
19
+ // Environment variables names that can be used to set the global flags.
20
+ envVarRPCServer = "TAPCLI_RPCSERVER"
21
+ envVarTapDir = "TAPCLI_TAPDIR"
22
+ ewnvVarSocksProxy = "TAPCLI_SOCKSPROXY"
23
+ envVarTLSCert = "TAPCLI_TLSCERTPATH"
24
+ envVarNetwork = "TAPCLI_NETWORK"
25
+ envVarMacaroonPath = "TAPCLI_MACAROONPATH"
26
+ envVarMacaroonTimeout = "TAPCLI_MACAROONTIMEOUT"
27
+ envVarMacaroonIP = "TAPCLI_MACAROONIP"
28
+ envVarProfile = "TAPCLI_PROFILE"
29
+ envVarMacFromJar = "TAPCLI_MACFROMJAR"
30
+ )
31
+
18
32
// NewApp creates a new tapcli app with all the available commands.
19
33
func NewApp (actionOpts ... ActionOption ) cli.App {
20
34
app := cli .NewApp ()
@@ -23,15 +37,17 @@ func NewApp(actionOpts ...ActionOption) cli.App {
23
37
app .Usage = "control plane for your Taproot Assets Daemon (tapd)"
24
38
app .Flags = []cli.Flag {
25
39
cli.StringFlag {
26
- Name : "rpcserver" ,
27
- Value : defaultRPCHostPort ,
28
- Usage : "The host:port of tap daemon." ,
40
+ Name : "rpcserver" ,
41
+ Value : defaultRPCHostPort ,
42
+ Usage : "The host:port of tap daemon." ,
43
+ EnvVar : envVarRPCServer ,
29
44
},
30
45
cli.StringFlag {
31
46
Name : "tapddir" ,
32
47
Value : defaultTapdDir ,
33
48
Usage : "The path to tap's base directory." ,
34
49
TakesFile : true ,
50
+ EnvVar : envVarTapDir ,
35
51
},
36
52
cli.StringFlag {
37
53
Name : "socksproxy" ,
@@ -44,12 +60,14 @@ func NewApp(actionOpts ...ActionOption) cli.App {
44
60
Value : defaultTLSCertPath ,
45
61
Usage : "The path to tapd's TLS certificate." ,
46
62
TakesFile : true ,
63
+ EnvVar : envVarTLSCert ,
47
64
},
48
65
cli.StringFlag {
49
66
Name : "network, n" ,
50
67
Usage : "The network tapd is running on, e.g. " +
51
68
"mainnet, testnet, etc." ,
52
- Value : "testnet" ,
69
+ Value : "testnet" ,
70
+ EnvVar : envVarNetwork ,
53
71
},
54
72
cli.BoolFlag {
55
73
Name : "no-macaroons" ,
@@ -59,15 +77,20 @@ func NewApp(actionOpts ...ActionOption) cli.App {
59
77
Name : "macaroonpath" ,
60
78
Usage : "The path to macaroon file." ,
61
79
TakesFile : true ,
80
+ EnvVar : envVarMacaroonPath ,
62
81
},
63
82
cli.Int64Flag {
64
83
Name : "macaroontimeout" ,
65
84
Value : 60 ,
66
- Usage : "Anti-replay macaroon validity time in seconds." ,
85
+ Usage : "Anti-replay macaroon validity time in " +
86
+ "seconds." ,
87
+ EnvVar : envVarMacaroonTimeout ,
67
88
},
68
89
cli.StringFlag {
69
- Name : "macaroonip" ,
70
- Usage : "If set, lock macaroon to specific IP address." ,
90
+ Name : "macaroonip" ,
91
+ Usage : "If set, lock macaroon to specific IP " +
92
+ "address." ,
93
+ EnvVar : envVarMacaroonIP ,
71
94
},
72
95
cli.StringFlag {
73
96
Name : "profile, p" ,
@@ -77,12 +100,14 @@ func NewApp(actionOpts ...ActionOption) cli.App {
77
100
"a default profile is set, this flag can be " +
78
101
"set to an empty string to disable reading " +
79
102
"values from the profiles file." ,
103
+ EnvVar : envVarProfile ,
80
104
},
81
105
cli.StringFlag {
82
106
Name : "macfromjar" ,
83
107
Usage : "Use this macaroon from the profile's " +
84
108
"macaroon jar instead of the default one. " +
85
109
"Can only be used if profiles are defined." ,
110
+ EnvVar : envVarMacFromJar ,
86
111
},
87
112
}
88
113
0 commit comments