From bc300fa12c1da69675ad96e2fed4e580dc0097da Mon Sep 17 00:00:00 2001 From: Jack Rubacha Date: Sat, 24 Aug 2024 20:04:19 -0400 Subject: [PATCH] rename misleading script, fix some docs --- README.md | 8 +++----- scylla.sh => argos.sh | 0 router-up.sh | 2 +- 3 files changed, 4 insertions(+), 6 deletions(-) rename scylla.sh => argos.sh (100%) diff --git a/README.md b/README.md index 9cd7330d..8196bea7 100644 --- a/README.md +++ b/README.md @@ -9,17 +9,15 @@ To initialize the odyssey submodule run `git submodule update --init` Setup angular-client and scylla-server: [Angular Client](./angular-client/README.md)\ -[Scylla Server](./scylla-server/README.md) +[Scylla Server](./scylla-server-rust/README.md) -Once you've sucessfully setup Scylla and the Client, you can either run them separately, or run the following command to run them concurrently (the outputs from both will be output to the same terminal): - -`npm run start` +Once you've sucessfully setup Scylla and the Client, you can either run them separately, or follow the docker commands below to run them together. ## Production ### Quick start shortcuts -The `scylla.sh` can be used on POSIX compliant OSes to quickly get up and running without worrying about profiles. Its syntax is `./scylla.sh ` where profile could be router, tpu, scylla-dev, or client-dev and the cmd is the normal argument passed into docker compose, such as `up -d` to start the process and fork to background. **Make sure to `down` with the same profile that you used `up` with!** +The `argos.sh` can be used on POSIX compliant OSes to quickly get up and running without worrying about profiles. Its syntax is `./argos.sh ` where profile could be router, tpu, scylla-dev, or client-dev and the cmd is the normal argument passed into docker compose, such as `up -d` to start the process and fork to background. **Make sure to `down` with the same profile that you used `up` with!** ### Customizing and more info diff --git a/scylla.sh b/argos.sh similarity index 100% rename from scylla.sh rename to argos.sh diff --git a/router-up.sh b/router-up.sh index d682cb03..0b2a289b 100755 --- a/router-up.sh +++ b/router-up.sh @@ -1,3 +1,3 @@ #!/bin/sh -./scylla.sh router up -d +./argos.sh router up -d