You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[vfox](https://github.com/version-fox/vfox) is the recommended plugin system for [mise](https://mise.jdx.dev/). You can use this plugin directly with mise via the `vfox:` prefix.
30
+
31
+
```shell
32
+
# install etcd & set as global version
33
+
mise use -g vfox:version-fox/vfox-etcd@latest
34
+
35
+
# or install a specific version
36
+
mise use -g vfox:version-fox/vfox-etcd@3.5.5
37
+
38
+
# install for local project (creates .mise.toml)
39
+
mise use vfox:version-fox/vfox-etcd@3.5.5
40
+
```
41
+
42
+
This sets the version in `~/.config/mise/config.toml`:
43
+
44
+
```toml
45
+
[tools]
46
+
"vfox:version-fox/vfox-etcd" = "latest"
47
+
```
48
+
49
+
#### Simplify with alias
50
+
51
+
Add an alias to your `~/.config/mise/config.toml` to use `etcd` as the short name:
52
+
53
+
```toml
54
+
[alias]
55
+
etcd = "vfox:version-fox/vfox-etcd"
56
+
```
57
+
58
+
After that, you can use the simplified syntax:
59
+
60
+
```shell
61
+
mise use -g etcd@latest
62
+
mise install etcd@3.5.5
63
+
```
64
+
25
65
### etcd with failpoint (Only support in Unix-like OS system)
26
66
27
67
For the [chaos testing](https://testsigma.com/blog/chaos-testing/) proposal, you can also utilize vfox-etcd to build etcd with failpoint. Example:
0 commit comments