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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
|
---
tags:
- v3
search:
boost: 2
---
Flags can have their default values set from different sources. The following sources are
provided by default with `urfave/cli`
- Environment
- Text Files
The library also provides a framework for users to plugin their own implementation of value sources
to be fetched via other mechanisms(http and so on).
In addition there is a `urfave/cli-altsrc` repo which hosts some common value sources to read
from files or via http/https.
- YAML
- JSON
- TOML
#### Values from the Environment
To set a value from the environment use `cli.EnvVars`. e.g.
<!-- {
"args": ["--help"],
"output": "language for the greeting.*APP_LANG"
} -->
```go
package main
import (
"log"
"os"
"context"
"github.com/urfave/cli/v3"
)
func main() {
cmd := &cli.Command{
Flags: []cli.Flag{
&cli.StringFlag{
Name: "lang",
Aliases: []string{"l"},
Value: "english",
Usage: "language for the greeting",
Sources: cli.EnvVars("APP_LANG"),
},
},
}
if err := cmd.Run(context.Background(), os.Args); err != nil {
log.Fatal(err)
}
}
```
If `cli.EnvVars` contains more than one string, the first environment variable that
resolves is used.
<!-- {
"args": ["--help"],
"output": "language for the greeting.*LEGACY_COMPAT_LANG.*APP_LANG.*LANG"
} -->
```go
package main
import (
"log"
"os"
"context"
"github.com/urfave/cli/v3"
)
func main() {
cmd := &cli.Command{
Flags: []cli.Flag{
&cli.StringFlag{
Name: "lang",
Aliases: []string{"l"},
Value: "english",
Usage: "language for the greeting",
Sources: cli.EnvVars("LEGACY_COMPAT_LANG", "APP_LANG", "LANG"),
},
},
}
if err := cmd.Run(context.Background(), os.Args); err != nil {
log.Fatal(err)
}
}
```
#### Values from files
You can also have the default value set from file via `cli.File`. e.g.
<!-- {
"args": ["--help"],
"output": "password for the mysql database"
} -->
```go
package main
import (
"log"
"os"
"context"
"github.com/urfave/cli/v3"
)
func main() {
cmd := &cli.Command{
Flags: []cli.Flag{
&cli.StringFlag{
Name: "password",
Aliases: []string{"p"},
Usage: "password for the mysql database",
Sources: cli.Files("/etc/mysql/password"),
},
},
}
if err := cmd.Run(context.Background(), os.Args); err != nil {
log.Fatal(err)
}
}
```
Note that default values are set in the same order as they are defined in the
`Sources` param. This allows the user to choose order of priority
#### Values from alternate input sources (YAML, TOML, and others)
There is a separate package [altsrc](https://github.com/urfave/cli-altsrc) that adds support for getting flag values
from other file input sources.
Currently supported input source formats by that library are:
- YAML
- JSON
- TOML
A simple straight forward usage would be
```go
package main
import (
"log"
"os"
"context"
"github.com/urfave/cli/v3"
"github.com/urfave/cli-altsrc/v3"
yaml "github.com/urfave/cli-altsrc/v3/yaml"
)
func main() {
cmd := &cli.Command{
Flags: []cli.Flag{
&cli.StringFlag{
Name: "password",
Aliases: []string{"p"},
Usage: "password for the mysql database",
Sources: cli.NewValueSourceChain(yaml.YAML("somekey", altsrc.StringSourcer("/path/to/filename"))),
},
},
}
if err := cmd.Run(context.Background(), os.Args); err != nil {
log.Fatal(err)
}
}
```
Sometime the source name is itself provided by another CLI flag. To allow the library to "lazy-load"
the file when needed we use the `altsrc.NewStringPtrSourcer` function to bind the value of the flag
to a pointer that is set as a destination of another flag
```go
package main
import (
"log"
"os"
"context"
"github.com/urfave/cli/v3"
"github.com/urfave/cli-altsrc/v3"
yaml "github.com/urfave/cli-altsrc/v3/yaml"
)
func main() {
var filename string
cmd := &cli.Command{
Flags: []cli.Flag{
&cli.StringFlag{
Name: "file",
Aliases: []string{"f"},
Value: "/path/to/default",
Usage: "filename for mysql database",
Destination: &filename,
},
&cli.StringFlag{
Name: "password",
Aliases: []string{"p"},
Usage: "password for the mysql database",
Sources: cli.NewValueSourceChain(yaml.YAML("somekey", altsrc.NewStringPtrSourcer(&filename))),
},
},
}
if err := cmd.Run(context.Background(), os.Args); err != nil {
log.Fatal(err)
}
}
```
|