From ac90f8fddc8bafce19be01f66f0e9f076f43d423 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Thu, 30 Jun 2022 14:37:20 +0200 Subject: [PATCH 1/2] Deprecate all parameter --- app/tasks/install.php | 2 +- docs/sdks/cli/GETTING_STARTED.md | 12 ------------ 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/app/tasks/install.php b/app/tasks/install.php index 6349a162fa..e6fe5f4439 100644 --- a/app/tasks/install.php +++ b/app/tasks/install.php @@ -25,7 +25,7 @@ $cli * 2. Check for older setup and get older version - DONE * 2.1 If older version is equal or bigger(?) than current version, **stop setup** * 2.2. Get ENV vars - DONE - * 2.2.1 Fetch from older docker-compose.yml file + * 2.2.1 Fetch from older ompo.yml file * 2.2.2 Fetch from older .env file (manually parse) * 2.3 Use old ENV vars as default values * 2.4 Ask for all required vars not given as CLI args and if in interactive mode diff --git a/docs/sdks/cli/GETTING_STARTED.md b/docs/sdks/cli/GETTING_STARTED.md index 2c71d37c0b..4d0f6fcba7 100644 --- a/docs/sdks/cli/GETTING_STARTED.md +++ b/docs/sdks/cli/GETTING_STARTED.md @@ -31,12 +31,6 @@ You can also fetch all the collections in your current project using appwrite init collection ``` -The CLI also comes with a convenient `--all` flag to perform both these steps at once. - -```sh -appwrite init --all -``` - * ### Creating and deploying cloud functions The CLI makes it extremely easy to create and deploy Appwrite's cloud functions. Initialise your new function using @@ -82,12 +76,6 @@ Similarly, you can deploy all your collections to your Appwrite server using appwrite deploy collections ``` -The `deploy` command also comes with a convenient `--all` flag to deploy all your functions and collections at once. - -```sh -appwrite deploy --all -``` - > ### Note > By default, requests to domains with self signed SSL certificates (or no certificates) are disabled. If you trust the domain, you can bypass the certificate validation using ```sh From 4acd56e6611166381b76dbcbb5388fe286d4bb42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Fri, 1 Jul 2022 08:13:33 +0200 Subject: [PATCH 2/2] Update app/tasks/install.php Co-authored-by: Christy Jacob --- app/tasks/install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/tasks/install.php b/app/tasks/install.php index e6fe5f4439..6349a162fa 100644 --- a/app/tasks/install.php +++ b/app/tasks/install.php @@ -25,7 +25,7 @@ $cli * 2. Check for older setup and get older version - DONE * 2.1 If older version is equal or bigger(?) than current version, **stop setup** * 2.2. Get ENV vars - DONE - * 2.2.1 Fetch from older ompo.yml file + * 2.2.1 Fetch from older docker-compose.yml file * 2.2.2 Fetch from older .env file (manually parse) * 2.3 Use old ENV vars as default values * 2.4 Ask for all required vars not given as CLI args and if in interactive mode