From d851733f6afa96f061e5d206c5fef50457883513 Mon Sep 17 00:00:00 2001 From: Krishna Agarwal Date: Thu, 6 Oct 2022 09:01:31 +0530 Subject: [PATCH 01/10] fixed typos, removed space --- CONTRIBUTING.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1e3c4ce91..9ade99cb1 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -12,7 +12,7 @@ Help us keep Appwrite open and inclusive. Please read and follow our [Code of Co ## Submit a Pull Request 🚀 -Branch naming convention is as following +Branch naming convention is as follows `TYPE-ISSUE_ID-DESCRIPTION` @@ -30,7 +30,7 @@ When `TYPE` can be: - **fix** - a bug fix - **refactor** - code change that neither fixes a bug nor adds a feature -**All PRs must include a commit message with the changes description!** +**All PRs must include a commit message with the a description of the changes!** For the initial start, fork the project and use git clone command to download the repository to your computer. A standard procedure for working on an issue would be to: @@ -48,7 +48,7 @@ $ git checkout -b [name_of_your_new_branch] 3. Work - commit - repeat ( be sure to be in your branch ) -4. Before you push your changes, make sure your code follows the `PSR12` coding standards , which is the standard Appwrite follows currently. You can easily do this by running the formatter. +4. Before you push your changes, make sure your code follows the `PSR12` coding standards, which is the standard Appwrite follows currently. You can easily do this by running the formatter. ```bash composer format @@ -60,7 +60,7 @@ Now, go a step further by running the linter by the following command to manuall composer lint ``` -This will give you a list of errors for you to rectify , if there is an instance you need more information on the errors being displayed you can pass in additional command line arguments. More list of available arguments can be found [here](https://github.com/squizlabs/PHP_CodeSniffer/wiki/Usage). A very useful command line argument is `--report=diff`. This will give you the expected changes by the linter for easy fixing of formatting issues. +This will give you a list of errors for you to rectify, if there is an instance you need more information on the errors being displayed you can pass in additional command line arguments. More list of available arguments can be found [here](https://github.com/squizlabs/PHP_CodeSniffer/wiki/Usage). A very useful command line argument is `--report=diff`. This will give you the expected changes by the linter for easy fixing of formatting issues. ```bash composer lint --report=diff @@ -116,7 +116,7 @@ After finishing the installation process, you can start writing and editing code #### Advanced Topics -We love to create issues that are good for beginners and label them as `good first issue` or `hacktoberfest`, but some more advanced topics might require extra knowledge. Below is a list of links you can use to learn more about some of the more advance topics that will help you master the Appwrite codebase. +We love to create issues that are good for beginners and label them as `good first issue` or `hacktoberfest`, but some more advanced topics might require extra knowledge. Below is a list of links you can use to learn more about some of the more advanced topics that will help you master the Appwrite codebase. ##### Tools and Libs From f794eea2e6ea5bdd7324b9d0c2e7a080adf630c7 Mon Sep 17 00:00:00 2001 From: Krishna Agarwal Date: Thu, 6 Oct 2022 09:02:08 +0530 Subject: [PATCH 02/10] removed space --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1bd62d61b..7f6524ce9 100644 --- a/README.md +++ b/README.md @@ -206,7 +206,7 @@ For security issues, kindly email us at [security@appwrite.io](mailto:security@a ## Follow Us -Join our growing community around the world! See our official [Blog](https://medium.com/appwrite-io). Follow us on [Twitter](https://twitter.com/appwrite), [Facebook Page](https://www.facebook.com/appwrite.io), [Facebook Group](https://www.facebook.com/groups/appwrite.developers/) , [Dev Community](https://dev.to/appwrite) or join our live [Discord server](https://discord.gg/GSeTUeA) for more help, ideas, and discussions. +Join our growing community around the world! See our official [Blog](https://medium.com/appwrite-io). Follow us on [Twitter](https://twitter.com/appwrite), [Facebook Page](https://www.facebook.com/appwrite.io), [Facebook Group](https://www.facebook.com/groups/appwrite.developers/), [Dev Community](https://dev.to/appwrite) or join our live [Discord server](https://discord.gg/GSeTUeA) for more help, ideas, and discussions. ## License From 187bf0165dba0ab5b028f01684a1751157056c02 Mon Sep 17 00:00:00 2001 From: Krishna Agarwal Date: Thu, 6 Oct 2022 09:02:56 +0530 Subject: [PATCH 03/10] rephrased words --- docs/services/account.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/services/account.md b/docs/services/account.md index 999a9be4a..746493381 100644 --- a/docs/services/account.md +++ b/docs/services/account.md @@ -2,9 +2,9 @@ The Account service allows you to authenticate and manage a user account. You ca Register new user accounts with the [Create Account](/docs/client/account#accountCreate), [Create Magic URL session](/docs/client/account#accountCreateMagicURLSession), or [Create Phone session](/docs/client/account#accountCreatePhoneSession) endpoint. You can authenticate the user account by using multiple sign-in methods available. Once the user is authenticated, a new session object will be created to allow the user to access his or her private data and settings. -This service also exposes an endpoint to save and read the [user preferences](/docs/client/account#accountUpdatePrefs) as a key-value object. This feature is handy if you want to allow extra customization in your app. Common usage for this feature may include saving the user preferred locale, timezone, or custom app theme. +This service also exposes an endpoint to save and read the [user preferences](/docs/client/account#accountUpdatePrefs) as a key-value object. This feature is handy if you want to allow extra customization in your app. Common usage for this feature may include saving the user's preferred locale, timezone, or custom app theme. > ## Account API vs Users API > While the Account API operates in the scope of the current logged-in user and usually using a client-side integration, the Users API is integrated from the server-side and operates in an admin scope with access to all your project users. > -> Some of the Account API methods are available from the server SDK when you authenticate with JWT. This allows you to perform server-side actions on behalf of your project user. \ No newline at end of file +> Some of the Account API methods are available from the server SDK when you authenticate with JWT. This allows you to perform server-side actions on behalf of your project user. From 5e75fca33fb49e3c578dff20d72b038173c8e70e Mon Sep 17 00:00:00 2001 From: Krishna Agarwal Date: Thu, 6 Oct 2022 09:04:44 +0530 Subject: [PATCH 04/10] Update avatars.md --- docs/services/avatars.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/services/avatars.md b/docs/services/avatars.md index 9bb9d49f0..3d382b835 100644 --- a/docs/services/avatars.md +++ b/docs/services/avatars.md @@ -1,5 +1,5 @@ The Avatars service aims to help you complete everyday tasks related to your app image, icons, and avatars. -The Avatars service allows you to fetch country flags, browser icons, payment methods logos, remote websites favicons, generate QR codes, and manipulate remote images URLs. +The Avatars service allows you to fetch country flags, browser icons, payment methods logos, remote websites favicons, generate QR codes, and manipulate remote image URLs. -All endpoints in this service allow you to resize, crop, and change the output image quality for maximum performance and visibility in your app. \ No newline at end of file +All endpoints in this service allow you to resize, crop, and change the output image quality for maximum performance and visibility in your app. From 5a9525fb89baef6e9484742731c0841437d021d6 Mon Sep 17 00:00:00 2001 From: Krishna Agarwal Date: Thu, 6 Oct 2022 09:08:12 +0530 Subject: [PATCH 05/10] fixed typo --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9ade99cb1..ecf1e5a10 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -338,7 +338,7 @@ Things to remember when releasing SDKs Appwrite uses [yasd](https://github.com/swoole/yasd) debugger, which can be made available during build of Appwrite. You can connect to the debugger using VS Code [PHP Debug](https://marketplace.visualstudio.com/items?itemName=felixfbecker.php-debug) extension or if you are in PHP Storm you don't need any plugin. Below are the settings required for remote debugger connection. -First, you need to create an init file. Duplicate **dev/yasd_init.php.stub** file and name it **dev/yasd_init.php** and there change the IP address to your development machine's IP. Without the proper IP address debugger won't connect. And you also need to set **DEBUG** build arg in **appwrite** service in **docker-compose.yml** file. +First, you need to create an init file. Duplicate **dev/yasd_init.php.stub** file and name it **dev/yasd_init.php** and then change the IP address to your development machine's IP. Without the proper IP address debugger won't connect. And you also need to set **DEBUG** build arg in **appwrite** service in **docker-compose.yml** file. ### VS Code Launch Configuration From 36f59375da43efbb2d7be08e7ec7976d76111451 Mon Sep 17 00:00:00 2001 From: Krishna Agarwal Date: Fri, 7 Oct 2022 23:13:19 +0530 Subject: [PATCH 06/10] Update CONTRIBUTING.md --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ecf1e5a10..76949a05c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -30,7 +30,7 @@ When `TYPE` can be: - **fix** - a bug fix - **refactor** - code change that neither fixes a bug nor adds a feature -**All PRs must include a commit message with the a description of the changes!** +**All PRs must include a commit message with the the description of the changes!** For the initial start, fork the project and use git clone command to download the repository to your computer. A standard procedure for working on an issue would be to: From 11caeaba11a503ab56b8143db1da88cc85b53085 Mon Sep 17 00:00:00 2001 From: Krishna Agarwal Date: Fri, 7 Oct 2022 23:13:42 +0530 Subject: [PATCH 07/10] Update CONTRIBUTING.md --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 76949a05c..8546c34d5 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -12,7 +12,7 @@ Help us keep Appwrite open and inclusive. Please read and follow our [Code of Co ## Submit a Pull Request 🚀 -Branch naming convention is as follows +Branch naming convention is as following `TYPE-ISSUE_ID-DESCRIPTION` From 1313a3056306360c9a42f73fac9d5e33ce69cece Mon Sep 17 00:00:00 2001 From: Krishna Agarwal Date: Fri, 7 Oct 2022 23:14:49 +0530 Subject: [PATCH 08/10] Update CONTRIBUTING.md --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8546c34d5..9958d6ed2 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -30,7 +30,7 @@ When `TYPE` can be: - **fix** - a bug fix - **refactor** - code change that neither fixes a bug nor adds a feature -**All PRs must include a commit message with the the description of the changes!** +**All PRs must include a commit message with the description of the changes!** For the initial start, fork the project and use git clone command to download the repository to your computer. A standard procedure for working on an issue would be to: From 00eeebbf041ceb5b207b8d0d753d28814f6e2e30 Mon Sep 17 00:00:00 2001 From: Krishna Agarwal Date: Fri, 7 Oct 2022 23:15:50 +0530 Subject: [PATCH 09/10] Update CONTRIBUTING.md --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9958d6ed2..19c2738c5 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -30,7 +30,7 @@ When `TYPE` can be: - **fix** - a bug fix - **refactor** - code change that neither fixes a bug nor adds a feature -**All PRs must include a commit message with the description of the changes!** +**All PRs must include a commit message with the description of the changes made!** For the initial start, fork the project and use git clone command to download the repository to your computer. A standard procedure for working on an issue would be to: From de39663095a403a2f1c428edbea594948e3642c5 Mon Sep 17 00:00:00 2001 From: Krishna Agarwal Date: Fri, 7 Oct 2022 23:16:54 +0530 Subject: [PATCH 10/10] made changes --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 19c2738c5..8b12c6a2f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -12,7 +12,7 @@ Help us keep Appwrite open and inclusive. Please read and follow our [Code of Co ## Submit a Pull Request 🚀 -Branch naming convention is as following +Branch naming convention is as follows `TYPE-ISSUE_ID-DESCRIPTION`