Skip to content

Commit 88bbc80

Browse files
committed
feat: archive.org env vars in .env.example and docker-compose
1 parent 3b07bd3 commit 88bbc80

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

.env.example

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,9 @@ BOT_NAME=NewsDiff Bot
1818
# BLUESKY_PASSWORD=xxxx-xxxx-xxxx-xxxx
1919
# BLUESKY_EMBED_TYPE=image
2020

21+
# Optional: Internet Archive (get keys at https://archive.org/account/s3.php)
22+
# ARCHIVE_ORG_ACCESS=your-access-key
23+
# ARCHIVE_ORG_SECRET=your-secret-key
24+
2125
# Optional: Syndication rate limit (milliseconds, default: 5 minutes)
2226
# SYNDICATE_RATE_MS=300000

docker-compose.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ services:
2929
BLUESKY_PASSWORD: ${BLUESKY_PASSWORD:-}
3030
BLUESKY_EMBED_TYPE: ${BLUESKY_EMBED_TYPE:-image}
3131
SYNDICATE_RATE_MS: ${SYNDICATE_RATE_MS:-300000}
32+
ARCHIVE_ORG_ACCESS: ${ARCHIVE_ORG_ACCESS:-}
33+
ARCHIVE_ORG_SECRET: ${ARCHIVE_ORG_SECRET:-}
3234
IMAGE_DIR: /data/images
3335
BOT_CONFIG_DIR: /data/config
3436
volumes:

0 commit comments

Comments
 (0)