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
Copy file name to clipboardExpand all lines: README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# liquidweb-cli
1
+
# lw (liquidweb-cli)
2
2
Official command line interface for the LiquidWeb API
3
3
```
4
4
CLI interface for LiquidWeb.
@@ -19,7 +19,7 @@ As always, consult the various subcommands for specific features and
19
19
capabilities.
20
20
21
21
Usage:
22
-
liquidweb-cli [command]
22
+
lw [command]
23
23
24
24
Available Commands:
25
25
auth authentication actions
@@ -30,22 +30,22 @@ Available Commands:
30
30
31
31
Flags:
32
32
--config string config file (default is $HOME/.liquidweb-cli.yaml)
33
-
-h, --help help for liquidweb-cli
33
+
-h, --help help for lw
34
34
35
-
Use "liquidweb-cli [command] --help" for more information about a command.
35
+
Use "lw [command] --help" for more information about a command.
36
36
```
37
37
## Obtaining prebuilt binaries
38
38
39
39
Head on over to the [releases page](https://github.com/liquidweb/liquidweb-cli/releases) to get prebuilt binaries for your platform.
40
40
41
41
## Building from source
42
42
43
-
You can build liquidweb-cli from source by running `make build` from the root of this repository. The resulting program will be located at `./_exe/liquidweb-cli`.
44
-
You can also build+install liquidweb-cli onto your system in the ordinary `go install` way. To do this, either just run `go install` from the root of this repository,
43
+
You can build lw from source by running `make build` from the root of this repository. The resulting program will be located at `./_exe/lw`.
44
+
You can also build+install lw onto your system in the ordinary `go install` way. To do this, either just run `go install` from the root of this repository,
45
45
or `make install`. If you run `make` with no arguments, this will be the default action.
46
46
47
47
## First Time Setup
48
-
The first time you use liquidweb-cli, you will need to setup an auth context. An auth context holds authentication related data for a specific LiquidWeb account. You can follow a guided questionnaire to add your auth contexts if you pass arguments `auth init` to liquidweb-cli. By default contexts are stored in `~/.liquidweb-cli.yaml` or `%APPDATA%/.liquidweb-cli.yaml` on Windows.
48
+
The first time you use lw, you will need to setup an auth context. An auth context holds authentication related data for a specific LiquidWeb account. You can follow a guided questionnaire to add your auth contexts if you pass arguments `auth init` to lw. By default contexts are stored in `~/.liquidweb-cli.yaml` or `%APPDATA%/.liquidweb-cli.yaml` on Windows.
49
49
50
50
## Adding auth contexts later
51
51
If you end up wanting to add an auth context later on, you can do so with `auth add-context`. You can find the usage documentation in `help auth add-context`.
0 commit comments