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 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.2.2
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.2.2
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