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
The CLI needs to be initialised with your project settings. This can be done using
34
34
```sh
35
-
$ appwrite init
35
+
$ {{ language.params.executableName }} init
36
36
```
37
37
38
-
The CLI requires an endpoint, project ID, API key and a locale to be able to communicate with the Appwrite backend server. There are two ways to achieve this
38
+
The CLI requires an endpoint, project ID, API key and a locale to be able to communicate with the {{ spec.title | caseUcfirst }} backend server. There are two ways to achieve this
Invoking `appwrite init` without an env file triggers an interactive prompt where you can manually enter the details. These values are saved locally so that you dont have to re-enter them everytime.
54
+
Invoking `{{ language.params.executableName }} init` without an env file triggers an interactive prompt where you can manually enter the details. These values are saved locally so that you dont have to re-enter them everytime.
55
55
56
56
## Usage
57
57
58
-
The Appwrite CLI follows the following general syntax.
58
+
The {{ spec.title | caseUcfirst }} CLI follows the following general syntax.
To get information about the different services available, you can use
71
71
```sh
72
-
$ appwrite help
72
+
$ {{ language.params.executableName }} help
73
73
```
74
74
75
75
To get information about a particular service and the commands available in a service you can use
76
76
```sh
77
-
$ appwrite users help
78
-
$ appwrite accounts help
77
+
$ {{ language.params.executableName }} users help
78
+
$ {{ language.params.executableName }} accounts help
79
79
```
80
80
81
81
To get information about a particular command and the parameters it accepts, you can use
82
82
83
83
```sh
84
-
$ appwrite users list --help
85
-
$ appwrite account get --help
84
+
$ {{ language.params.executableName }} users list --help
85
+
$ {{ language.params.executableName }} account get --help
86
86
```
87
87
88
88
## Contribution
89
89
90
-
This library is auto-generated by Appwrite custom [SDK Generator](https://github.com/appwrite/sdk-generator). To learn more about how you can help us improve this SDK, please check the [contribution guide](https://github.com/appwrite/sdk-generator/blob/master/CONTRIBUTING.md) before sending a pull-request.
90
+
This library is auto-generated by {{ spec.title | caseUcfirst }} custom [SDK Generator](https://github.com/{{ spec.title | lower }}/sdk-generator). To learn more about how you can help us improve this SDK, please check the [contribution guide](https://github.com/{{ spec.title | lower }}/sdk-generator/blob/master/CONTRIBUTING.md) before sending a pull-request.
0 commit comments