diff --git a/README.md b/README.md index 12e28b1..c32f809 100644 --- a/README.md +++ b/README.md @@ -50,10 +50,10 @@ Go to the project directory: cd cloudlet ``` -Create a TOML config file or update the [existing one](./src/agent/examples/config.toml): +Create a TOML config file or update the [existing one](./src/cli/examples/config.toml): ```bash -cat << EOF > src/agent/examples/config.toml +cat << EOF > src/cli/examples/config.toml workload-name = "fibonacci" language = "rust" action = "prepare-and-run" @@ -63,7 +63,7 @@ address = "localhost" port = 50051 [build] -source-code-path = "$(readlink -f ./src/agent/examples/main.rs)" +source-code-path = "$(readlink -f ./src/cli/examples/main.rs)" release = true EOF ``` @@ -95,7 +95,7 @@ cargo run --bin api ### Send the request using the CLI ```bash -cargo run --bin cli -- run --config-path src/agent/examples/config.toml +cargo run --bin cli -- run --config-path src/cli/examples/config.toml ``` > [!NOTE] diff --git a/src/agent/examples/config.toml b/src/cli/examples/config.toml similarity index 100% rename from src/agent/examples/config.toml rename to src/cli/examples/config.toml diff --git a/src/agent/examples/main.rs b/src/cli/examples/main.rs similarity index 100% rename from src/agent/examples/main.rs rename to src/cli/examples/main.rs