@railway/cli 1.8.3 → 1.8.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ This is the command line interface for [Railway](https://railway.app). Use it to
|
|
|
8
8
|
|
|
9
9
|
## Installation
|
|
10
10
|
|
|
11
|
-
The Railway CLI is available through [Homebrew](https://brew.sh/), [NPM](https://www.npmjs.com/package/@railway/cli), or as a
|
|
11
|
+
The Railway CLI is available through [Homebrew](https://brew.sh/), [NPM](https://www.npmjs.com/package/@railway/cli), curl, or as a [Nixpkg](https://nixos.org).
|
|
12
12
|
|
|
13
13
|
### Brew
|
|
14
14
|
|
|
@@ -35,6 +35,15 @@ yarn global add @railway/cli
|
|
|
35
35
|
curl -fsSL https://railway.app/install.sh | sh
|
|
36
36
|
```
|
|
37
37
|
|
|
38
|
+
### Nixpkg
|
|
39
|
+
Note: This installation method is not supported by Railway and is maintained by the community.
|
|
40
|
+
```shell
|
|
41
|
+
# On NixOS
|
|
42
|
+
nix-env -iA nixos.railway
|
|
43
|
+
# On non-NixOS
|
|
44
|
+
nix-env -iA nixpkgs.railway
|
|
45
|
+
```
|
|
46
|
+
|
|
38
47
|
### From source
|
|
39
48
|
See [CONTRIBUTING.md](https://github.com/railwayapp/cli/blob/master/CONTRIBUTING.md) for information on setting up this repo locally.
|
|
40
49
|
|