diff --git a/server/hello.sh b/server/quickstart.sh similarity index 96% rename from server/hello.sh rename to server/quickstart.sh index 28ec583f96..95195b00fb 100755 --- a/server/hello.sh +++ b/server/quickstart.sh @@ -3,7 +3,7 @@ # Ente self-host quickstart helper script. # # Usage: -# sh -c "$(curl -fsSL https://raw.githubusercontent.com/ente-io/ente/HEAD/server/hello.sh)" +# sh -c "$(curl -fsSL https://raw.githubusercontent.com/ente-io/ente/HEAD/server/quickstart.sh)" # # Docs: # https://github.com/ente-io/ente/blob/main/server/quickstart/README.md diff --git a/server/quickstart/README.md b/server/quickstart/README.md index 8ebe68a144..909e2c1a42 100644 --- a/server/quickstart/README.md +++ b/server/quickstart/README.md @@ -8,7 +8,7 @@ uses pre-built images instead. Copy paste the following command into your terminal ```sh -sh -c "$(curl -fsSL https://raw.githubusercontent.com/ente-io/ente/HEAD/server/hello.sh)" +sh -c "$(curl -fsSL https://raw.githubusercontent.com/ente-io/ente/HEAD/server/quickstart.sh)" ``` Alternatively, you can run the following four steps manually (that's all the @@ -69,15 +69,15 @@ curl localhost:8080/ping And start using the web app by opening http://localhost:3000 in your browser. The cluster will keep running as long as the `docker compose up` command (or the -`hello.sh` script you curl-ed) is running. If you want to keep it running in the -background, you can instead. +`quickstart.sh` script you curl-ed) is running. If you want to keep it running +in the background, you can instead: ```sh cd /path/to/my-ente # Or whichever directory you created docker compose up -d ``` -And then later, to stop the cluster, you can +And then later, to stop the cluster, you can: ```sh cd /path/to/my-ente