Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/guides/bun/deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ aliases:
## Prerequisites

- Complete all the previous sections of this guide, starting with [Containerize a Bun application](containerize.md).
- [Turn on Kubernetes](/manuals//desktop/use-desktop/kubernetes.md#enable-kubernetes) in Docker Desktop.
- [Turn on Kubernetes](/manuals/desktop/use-desktop/kubernetes.md#enable-kubernetes) in Docker Desktop.

## Overview

Expand Down
2 changes: 1 addition & 1 deletion content/guides/localstack.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ Now that you've familiarized yourself with LocalStack, it's time to see it in ac

Now it’s time to connect your app to LocalStack. The `index.js` file, located in the backend/ directory, serves as the main entry point for the backend application.

The code interacts with LocalStack’s S3 service, which is accessed via the endpoint defined by the `S3_ENDPOINT_URL` environment variable, typically set to `http://localhost:4556` for local development.
The code interacts with LocalStack’s S3 service, which is accessed via the endpoint defined by the `S3_ENDPOINT_URL` environment variable, typically set to `http://localhost:4566` for local development.

The `S3Client` from the AWS SDK is configured to use this LocalStack endpoint, along with test credentials (`AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY`) that are also sourced from environment variables. This setup lets the application to perform operations on the locally simulated S3 service as if it were interacting with the real AWS S3, making the code flexible for different environments.

Expand Down
2 changes: 1 addition & 1 deletion content/guides/pgadmin.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ Fortunately, there is an ability to auto-connect to the database.
Add the following config to your `compose.yaml` file to define a pgpass file:

```yaml
config:
configs:
pgadmin-pgpass:
content: |
postgres:5432:*:postgres:secret
Expand Down