appwrite-cli 17.4.0 → 18.0.1
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 +6 -4
- package/dist/bundle-win-arm64.mjs +13311 -10563
- package/dist/cli.cjs +13311 -10563
- package/dist/index.cjs +23873 -4009
- package/dist/index.js +23873 -4009
- package/dist/lib/commands/config.d.ts +30 -1
- package/dist/lib/commands/config.d.ts.map +1 -1
- package/dist/lib/commands/init.d.ts.map +1 -1
- package/dist/lib/commands/pull.d.ts +5 -0
- package/dist/lib/commands/pull.d.ts.map +1 -1
- package/dist/lib/commands/push.d.ts +18 -2
- package/dist/lib/commands/push.d.ts.map +1 -1
- package/dist/lib/commands/update.d.ts.map +1 -1
- package/dist/lib/commands/utils/deployment.d.ts +24 -0
- package/dist/lib/commands/utils/deployment.d.ts.map +1 -1
- package/dist/lib/config.d.ts +6 -2
- package/dist/lib/config.d.ts.map +1 -1
- package/dist/lib/constants.d.ts +1 -1
- package/dist/lib/questions.d.ts +2 -0
- package/dist/lib/questions.d.ts.map +1 -1
- package/dist/lib/services.d.ts +3 -1
- package/dist/lib/services.d.ts.map +1 -1
- package/dist/lib/spinner.d.ts +4 -0
- package/dist/lib/spinner.d.ts.map +1 -1
- package/dist/lib/utils.d.ts +5 -0
- package/dist/lib/utils.d.ts.map +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Appwrite Command Line SDK
|
|
2
2
|
|
|
3
3
|

|
|
4
|
-

|
|
5
5
|
[](https://travis-ci.com/appwrite/sdk-generator)
|
|
6
6
|
[](https://twitter.com/appwrite)
|
|
7
7
|
[](https://appwrite.io/discord)
|
|
@@ -14,7 +14,7 @@ Appwrite is an open-source backend as a service server that abstracts and simpli
|
|
|
14
14
|
|
|
15
15
|
## Installation
|
|
16
16
|
|
|
17
|
-
The Appwrite CLI is a
|
|
17
|
+
The Appwrite CLI is a command line tool to help you interact with the Appwrite API. The CLI is distributed both as an [`npm package`](https://www.npmjs.com/package/appwrite-cli) as well as [native binaries](https://github.com/appwrite/sdk-for-cli/releases/latest) for specific operating systems and architectures.
|
|
18
18
|
|
|
19
19
|
### Install using NPM
|
|
20
20
|
---
|
|
@@ -29,7 +29,7 @@ Once the installation is complete, you can verify the install using
|
|
|
29
29
|
|
|
30
30
|
```sh
|
|
31
31
|
$ appwrite -v
|
|
32
|
-
|
|
32
|
+
18.0.0
|
|
33
33
|
```
|
|
34
34
|
|
|
35
35
|
### Install using prebuilt binaries
|
|
@@ -47,6 +47,8 @@ $ wget -q https://appwrite.io/cli/install.sh -O - | /bin/bash
|
|
|
47
47
|
$ brew install appwrite
|
|
48
48
|
```
|
|
49
49
|
|
|
50
|
+
Homebrew installs the native binary for your platform.
|
|
51
|
+
|
|
50
52
|
### Windows
|
|
51
53
|
Via Powershell
|
|
52
54
|
```powershell
|
|
@@ -60,7 +62,7 @@ $ scoop install https://raw.githubusercontent.com/appwrite/sdk-for-cli/master/sc
|
|
|
60
62
|
Once the installation completes, you can verify your install using
|
|
61
63
|
```
|
|
62
64
|
$ appwrite -v
|
|
63
|
-
|
|
65
|
+
18.0.0
|
|
64
66
|
```
|
|
65
67
|
|
|
66
68
|
## Getting Started
|