Skip to content

Commit 3ed3930

Browse files
committed
Clean up more metadata and language codes
1 parent a6352f3 commit 3ed3930

File tree

10 files changed

+33
-31
lines changed

10 files changed

+33
-31
lines changed

src/content/docs/capabilities/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Capabilities
3-
description:
3+
description: This is a dummy description
44
template: doc
55
nav: 1
66
---

src/content/docs/getting-started/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Getting Started
3-
description:
3+
description: This is a dummy description
44
template: doc
55

66
nav: 1

src/content/docs/integrations/app-frameworks/spring-cloud-function.md

Lines changed: 21 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -24,23 +24,25 @@ The primary language for the application is Kotlin powered by
2424
[Gradle](https://gradle.org) build tool, but the described concepts would work for
2525
any other JVM setup.
2626

27-
* [Current Limitations](#current-limitations)
28-
* [Setting up an Application](#setting-up-an-application)
29-
* [Starting a new Project](#starting-a-new-project)
30-
* [Project Settings](#project-settings)
31-
* [Configure Log4J2 for AWS Lambda](#configure-log4j2-for-aws-lambda)
32-
* [Configure Spring Cloud Function for Rest API](#configure-spring-cloud-function-for-rest-api)
33-
* [Define an Application class](#define-an-application-class)
34-
* [Configure Jackson](#configure-jackson)
35-
* [Define Logging Utility](#define-logging-utility)
36-
* [Add Request/Response utilities](#add-requestresponse-utilities)
37-
* [Creating a sample Model / DTO](#creating-a-sample-model--dto)
38-
* [Creating Rest API endpoints](#creating-rest-api-endpoints)
39-
* [Cold Start and Warmup (PRO)](#cold-start-and-warmup-pro)
40-
* [Creating other lambda Handlers](#creating-other-lambda-handlers)
41-
* [Setting up Deployment](#setting-up-deployment)
42-
* [Testing, Debugging and Hot Reloading](#testing-debugging-and-hot-reloading)
43-
* [Useful links](#useful-links)
27+
- [Overview](#overview)
28+
- [Covered Topics](#covered-topics)
29+
- [Current Limitations](#current-limitations)
30+
- [Setting up an Application](#setting-up-an-application)
31+
- [Starting a new Project](#starting-a-new-project)
32+
- [Project Settings](#project-settings)
33+
- [Configure Log4J2 for AWS Lambda](#configure-log4j2-for-aws-lambda)
34+
- [Configure Spring Cloud Function for Rest API](#configure-spring-cloud-function-for-rest-api)
35+
- [Define an Application class](#define-an-application-class)
36+
- [Configure Jackson](#configure-jackson)
37+
- [Define Logging Utility](#define-logging-utility)
38+
- [Add Request/Response utilities](#add-requestresponse-utilities)
39+
- [Creating a sample Model / DTO](#creating-a-sample-model--dto)
40+
- [Creating Rest API endpoints](#creating-rest-api-endpoints)
41+
- [Cold Start and Warmup (Pro)](#cold-start-and-warmup-pro)
42+
- [Creating other lambda Handlers](#creating-other-lambda-handlers)
43+
- [Setting up Deployment](#setting-up-deployment)
44+
- [Testing, Debugging and Hot Reloading](#testing-debugging-and-hot-reloading)
45+
- [Useful Links](#useful-links)
4446

4547
### Current Limitations
4648

@@ -83,7 +85,7 @@ $ ./gradlew <command>
8385
Let's give our project a name:
8486
open `settings.gradle`, and adjust the autogenerated name to something meaningful.
8587

86-
```gradle
88+
```groovy
8789
rootProject.name = 'localstack-sampleproject'
8890
```
8991

@@ -233,7 +235,7 @@ Let's configure it to lookup our function Beans by HTTP method and path, create
233235
new `application.properties` file under `src/main/resources/application.properties`
234236
with the following content:
235237

236-
```env
238+
```dotenv
237239
spring.main.banner-mode=off
238240
spring.cloud.function.definition=functionRouter
239241
spring.cloud.function.routing-expression=headers['httpMethod'].concat(' ').concat(headers['path'])

src/content/docs/integrations/aws-sdks/python-boto3.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ nav:
1111
You can easily create a `boto3` client that interacts with your LocalStack instance.
1212
The example below creates a `boto3` client that lists all available Lambda functions:
1313

14-
```python3
14+
```python
1515
import boto3
1616

1717
endpoint_url = "http://localhost.localstack.cloud:4566"
@@ -31,14 +31,14 @@ if __name__ == "__main__":
3131
If you're connecting from within a Python **Lambda function** handler in LocalStack, you can create a default client without configuring the `endpoint_url` - LocalStack will automatically forward the invocations to the local API endpoints (available in Pro, see [here]({{< ref "user-guide/tools/transparent-endpoint-injection" >}}) for more details).
3232
{{< /callout >}}
3333

34-
```python3
34+
```python
3535
client = boto3.client("lambda")
3636
...
3737
```
3838

3939
Alternatively, if you prefer to (or need to) set the endpoints directly, you can use the environment variable `AWS_ENDPOINT_URL`, which is available when executing user code (e.g., Lambda functions) in LocalStack:
4040

41-
```python3
41+
```python
4242
import os
4343
client = boto3.client("lambda", endpoint_url=os.getenv("AWS_ENDPOINT_URL"))
4444
...

src/content/docs/integrations/testing/hyperexecute.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title:
3-
description:
2+
title: This is a dummy title
3+
description: This is a dummy description
44
template: doc
55

66
nav:

src/content/docs/pro/enterprise-support.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Enterprise Support
3-
description:
3+
description: This is a dummy description
44
template: doc
55

66
nav:

src/content/docs/pro/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: LocalStack Enterprise
3-
description:
3+
description: This is a dummy description
44
template: doc
55

66
nav: 1

src/content/docs/tooling/lambda-tools/hot-reloading.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ then mounted to LocalStack.
7979
We are using `Gradle` build tool to unpack the
8080
`FatJar` into the `build/hot` folder:
8181

82-
```gradle
82+
```groovy
8383
// We assume you are using something like `Shadow` plugin that comes with `shadowJar` task
8484
task buildHot(type: Copy) {
8585
from zipTree("${project.buildDir}/libs/${project.name}-all.jar")

src/content/docs/tooling/localstack-sdks/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: LocalStack SDKs
3-
description:
3+
description: This is a dummy description
44
template: doc
55

66
nav:

src/content/docs/tooling/testing-utils.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ $ pip install localstack-utils
2323

2424
### Usage
2525

26-
```python3
26+
```python
2727
import time
2828
import boto3
2929
import unittest

0 commit comments

Comments
 (0)