-First, you need to initialize the local cloud using the following command from the the `services` directory:
+First, you need to initialize the local cloud using the following command from the `services` directory:
```
yarn init-local-cloud
@@ -90,22 +90,22 @@
This will start the LocalStack Docker image and initialize required resources, including DynamoDB tables and S3 buckets, using the Terraform scripts located in `services/terraform`.
-To start a certain service in the sandbox you can run the following command:
+To start any service in the sandbox, except Identity, you can run the following command:
```
-yarn run-[service-name]-service-in-sandbox
+cargo run
```
-For example, for Tunnelbroker the command will look like this:
+To run the Identity service for the first time, you need to configure its keys first:
```
-yarn run-tunnelbroker-service-in-sandbox
+cargo run keygen
```
-You can also run all services at once in the sandbox using the command below:
-We use LocalStack to emulate AWS services, allowing us to develop and test our services locally. To start LocalStack, run:
+We use LocalStack to emulate AWS services, allowing us to develop and test our services locally. To start LocalStack, run from the `services` directory:
```
-comm-dev services start
+yarn init-local-cloud
```
Make sure your LocalStack resources are up to date: