appwrite-cli 22.2.2 → 22.4.0
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 +4 -4
- package/dist/cli.cjs +398 -243
- package/dist/index.cjs +372 -125
- package/dist/index.js +372 -125
- package/dist/lib/auth/login.d.ts.map +1 -1
- package/dist/lib/auth/session.d.ts.map +1 -1
- package/dist/lib/commands/config.d.ts +6 -6
- package/dist/lib/commands/generic.d.ts.map +1 -1
- package/dist/lib/commands/init.d.ts.map +1 -1
- package/dist/lib/commands/push.d.ts +3 -0
- package/dist/lib/commands/push.d.ts.map +1 -1
- package/dist/lib/commands/utils/deployment.d.ts.map +1 -1
- package/dist/lib/config.d.ts.map +1 -1
- package/dist/lib/constants.d.ts +2 -2
- package/dist/lib/constants.d.ts.map +1 -1
- package/dist/lib/parser.d.ts +1 -0
- package/dist/lib/parser.d.ts.map +1 -1
- package/dist/lib/sdks.d.ts +3 -1
- package/dist/lib/sdks.d.ts.map +1 -1
- package/dist/lib/utils.d.ts +1 -0
- package/dist/lib/utils.d.ts.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -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
|
-
22.
|
|
32
|
+
22.4.0
|
|
33
33
|
```
|
|
34
34
|
|
|
35
35
|
### Install using prebuilt binaries
|
|
@@ -83,7 +83,7 @@ $ scoop install https://raw.githubusercontent.com/appwrite/sdk-for-cli/master/sc
|
|
|
83
83
|
Once the installation completes, you can verify your install using
|
|
84
84
|
```
|
|
85
85
|
$ appwrite -v
|
|
86
|
-
22.
|
|
86
|
+
22.4.0
|
|
87
87
|
```
|
|
88
88
|
|
|
89
89
|
## Getting Started
|
|
@@ -97,7 +97,7 @@ $ appwrite login
|
|
|
97
97
|
? Enter your password ********
|
|
98
98
|
✓ Success
|
|
99
99
|
```
|
|
100
|
-
This will also prompt you to enter your Appwrite endpoint ( default: http://localhost/v1 )
|
|
100
|
+
This will also prompt you to enter your Appwrite endpoint ( default: http://localhost:9520/v1 )
|
|
101
101
|
|
|
102
102
|
* ### Initialising your project
|
|
103
103
|
Once logged in, the CLI needs to be initialised before you can use it with your Appwrite project. You can do this with the `appwrite init project` command.
|
|
@@ -227,7 +227,7 @@ $ appwrite client --reset
|
|
|
227
227
|
The Appwrite CLI can also work in a CI environment. The initialisation of the CLI works a bit differently in CI. In CI, you set your `endpoint`, `projectId` and `API Key` using
|
|
228
228
|
|
|
229
229
|
```sh
|
|
230
|
-
appwrite client --endpoint http://localhost/v1 --projectId <PROJECT_ID> --key <API KEY>
|
|
230
|
+
appwrite client --endpoint http://localhost:9520/v1 --projectId <PROJECT_ID> --key <API KEY>
|
|
231
231
|
```
|
|
232
232
|
|
|
233
233
|
|