From dcc50805ee4b2b820f15cf3234a7d688952ffdd3 Mon Sep 17 00:00:00 2001 From: Jonas L Date: Thu, 27 Jun 2024 12:15:57 +0200 Subject: [PATCH] docs: update usage example (#11) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3da1fc9..9c531a0 100644 --- a/README.md +++ b/README.md @@ -20,13 +20,13 @@ To setup a development environment, make sure you installed the following tools: 2. Deploy the development cluster: ```sh -make -C dev up +make -C example up ``` 3. Load the generated configuration to access the development cluster: ```sh -source files/env.sh +source example/files/env.sh ``` 4. Check that the development cluster is healthy: @@ -38,5 +38,5 @@ kubectl get nodes -o wide ⚠️ Do not forget to clean up the development cluster once are finished: ```sh -make -C dev down +make -C example down ```