You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: content/en/docs/Integrations/architect/index.md
+6-5
Original file line number
Diff line number
Diff line change
@@ -17,11 +17,12 @@ If you are adapting an existing configuration, you might be able to skip certain
17
17
## Example
18
18
19
19
### Setup
20
-
To use Architect in conjunction with Localstack, simply install the ```arclocal``` command (sources can be found [here](https://github.com/localstack/architect-local)).
The ``` arclocal``` command has the same usage as the ```arc``` command, so you can start right away.
20
+
To use Architect in conjunction with Localstack, simply install the `arclocal` command (sources can be found [here](https://github.com/localstack/architect-local)).
We will need the pool-id for further operations, so save it in a ```pool_id``` variable.
65
+
We will need the pool-id for further operations, so save it in a `pool_id` variable.
65
66
Alternatively, you can also use a JSON processor like [jq](https://stedolan.github.io/jq/) to directly extract the necessary information when creating a pool.
66
-
```
67
-
pool_id=$(awslocal cognito-idp create-user-pool --pool-name test | jq -rc ".UserPool.Id")
68
-
```
67
+
68
+
{{< command >}}
69
+
$ pool_id=$(awslocal cognito-idp create-user-pool --pool-name test | jq -rc ".UserPool.Id")
70
+
{{< /command >}}
71
+
69
72
## Adding a Client
70
73
71
74
Now we add a client to our newly created pool. We will also need the ID of the created client for the next step. The complete command for client creation with subsequent ID extraction is therefore
Copy file name to clipboardexpand all lines: content/en/docs/LocalStack Tools/Lambda Tools/debugging/index.md
+9-9
Original file line number
Diff line number
Diff line change
@@ -38,11 +38,11 @@ There, the necessary code fragments for enabling debugging are already present.
38
38
### Configure LocalStack for remote Python debugging
39
39
40
40
First, make sure that LocalStack is started with the following configuration (see the [Configuration docs]({{< ref "configuration#lambda" >}}) for more information):
41
-
```sh
42
-
LAMBDA_REMOTE_DOCKER=0 \
41
+
{{< command >}}
42
+
$ LAMBDA_REMOTE_DOCKER=0 \
43
43
LAMBDA_DOCKER_FLAGS='-p 19891:19891' \
44
44
DEBUG=1 localstack start
45
-
```
45
+
{{< /command >}}
46
46
47
47
### Preparing your code
48
48
@@ -86,19 +86,19 @@ To create the Lambda function, you just need to take care of two things:
86
86
87
87
So, in our [example](https://github.com/localstack/localstack-pro-samples/tree/master/lambda-mounting-and-debugging), this would be:
0 commit comments