From e4d52d3f56e8f6491841c048d15f4b7ba47b2d54 Mon Sep 17 00:00:00 2001 From: gentele Date: Sun, 16 Sep 2018 13:25:02 +0200 Subject: [PATCH 1/2] improve README --- README.md | 4 +++- scripts/installer-win.bat | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 58f9aee684..35cf60cbc0 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ curl -s "https://raw.githubusercontent.com/covexo/devspace/master/scripts/instal del "%Temp%\install-devspace.bat" ``` -**Note:** After running the install script, you should reopen the terminal window to refresh the environment variables. +**Note:** After running the install script, you should close and re-open your terminal window or IDE to refresh the environment variables. ### For Linux ```bash @@ -47,6 +47,8 @@ curl --silent "https://api.github.com/repos/covexo/devspace/releases/latest" | s ``` ## [Quickstart](https://devspace.covexo.com/docs/getting-started/quickstart.html) +To get started with the DevSpace CLI, you only need a Kubernetes cluster. If you do not have one yet, take a look at our [Minikube Install Guide](https://devspace.covexo.com/docs/advanced/kubernetes.html) or [request access to the private beta of the DevSpace Cloud](https://devspace-cloud.com/). + The DevSpace CLI allows you to create a DevSpace for any existing project with just a single command: ``` devspace up diff --git a/scripts/installer-win.bat b/scripts/installer-win.bat index ad510ecb3f..81e0ef392d 100644 --- a/scripts/installer-win.bat +++ b/scripts/installer-win.bat @@ -16,7 +16,7 @@ echo 1. Downloading executable... set INSTALL_PATH=%INSTALL_DIR%\devspace.exe if not exist %INSTALL_PATH% curl -L %DEVSPACE_EXE% >%INSTALL_PATH% || echo Unable to download latest release && exit /B 1 -echo 2. Running installation... +echo 2. Running installation... (this may take 1-2 minutes) start /WAIT /D %INSTALL_DIR% /B devspace.exe "install" if "%errorlevel%" == "0" ( From 43b13c3317398a1df8c80f6d6f05e448de6c5428 Mon Sep 17 00:00:00 2001 From: gentele Date: Sun, 16 Sep 2018 13:25:10 +0200 Subject: [PATCH 2/2] improve README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 35cf60cbc0..db56feb066 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ The DevSpace CLI allows you to create a DevSpace for any existing project with j ``` devspace up ``` -Take a look at the [Getting Started Guide](https://devspace.covexo.com/docs/getting-started/quickstart.html) on our documentation page to start coding with a DevSpace. +Take a look at the [Getting Started Guide](https://devspace.covexo.com/docs/getting-started/quickstart.html) on our documentation page to see how to get started with a DevSpace. **Note:** Don't worry, with you can use `devspace reset` to reset your project and go back to local development.