Skip to content
Open
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
11 changes: 8 additions & 3 deletions libsql-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,16 @@ environment variables can be used to configure the replication:
```bash
LIBSQL_BOTTOMLESS_BUCKET=my-bucket # Default bucket name: bottomless
LIBSQL_BOTTOMLESS_ENDPOINT='http://localhost:9000' # address can be overridden for local testing, e.g. with Minio
LIBSQL_BOTTOMLESS_AWS_SECRET_ACCESS_KEY= # regular AWS variables are used
LIBSQL_BOTTOMLESS_AWS_ACCESS_KEY_ID= # ... to set up auth, regions, etc.
LIBSQL_BOTTOMLESS_AWS_REGION= # .
LIBSQL_BOTTOMLESS_AWS_ACCESS_KEY_ID= # AWS access key ID (or S3-compatible provider)
LIBSQL_BOTTOMLESS_AWS_SECRET_ACCESS_KEY= # AWS secret access key (or S3-compatible provider)
LIBSQL_BOTTOMLESS_AWS_DEFAULT_REGION=us-east-1 # AWS region (required; use us-east-1 for MinIO/local dev)
LIBSQL_BOTTOMLESS_AWS_SESSION_TOKEN= # Optional, for temporary AWS credentials
```

> **Note:** The region variable is `LIBSQL_BOTTOMLESS_AWS_DEFAULT_REGION`, not `LIBSQL_BOTTOMLESS_AWS_REGION`.
> If unset, `sqld` will fail to start with the error:
> `Error: Internal Error: LIBSQL_BOTTOMLESS_AWS_DEFAULT_REGION was not set`

### bottomless-cli

Replicated snapshots can be inspected and managed with the official command-line
Expand Down
Loading