[server] Rename hello.sh to quickstart.sh

This commit is contained in:
Manav Rathi
2025-03-20 13:08:09 +05:30
parent 5abc106494
commit fbf0f934fb
2 changed files with 5 additions and 5 deletions

View File

@@ -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

View File

@@ -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