Skip to content

Commit

Permalink
docs(bluesky): mention the ability to disable post backdating
Browse files Browse the repository at this point in the history
  • Loading branch information
louisgrasset committed Oct 4, 2024
1 parent fbeb567 commit 9f66263
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 deletions.
17 changes: 9 additions & 8 deletions docs/docs/resources/environment-variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,15 @@ Even if `TWITTER_USERNAME` & `TWITTER_PASSWORD` are optional, these variables ar

Configure here how the sync will be done.

| Variable | Default | Category | Description |
|----------------------------|:-------:|--------------------------------------------------------------------------|---------------------------------------------|
| 📌 `SYNC_MASTODON` | false | ![**Sync**::platform](https://img.shields.io/badge/Sync-Platform-e8e8e8) | Whether run the sync to Mastodon. |
| 📌 `SYNC_BLUESKY` | false | ![**Sync**::platform](https://img.shields.io/badge/Sync-Platform-e8e8e8) | Whether run the sync to Bluesky. | |
| `SYNC_PROFILE_NAME` | false | ![**Sync**::profile](https://img.shields.io/badge/Sync-Profile-yellow) | Whether sync the profile name. |
| `SYNC_PROFILE_DESCRIPTION` | false | ![**Sync**::profile](https://img.shields.io/badge/Sync-Profile-yellow) | Whether sync the profile description. |
| `SYNC_PROFILE_PICTURE` | false | ![**Sync**::profile](https://img.shields.io/badge/Sync-Profile-yellow) | Whether sync the profile picture. |
| `SYNC_PROFILE_HEADER` | false | ![**Sync**::profile](https://img.shields.io/badge/Sync-Profile-yellow) | Whether sync the profile header (= banner). |
| Variable | Default | Category | Description |
|---------------------------|:-------:|--------------------------------------------------------------------------|--------------------------------------------|
| 📌 `SYNC_MASTODON` | false | ![**Sync**::platform](https://img.shields.io/badge/Sync-Platform-e8e8e8) | Whether run the sync to Mastodon. |
| 📌 `SYNC_BLUESKY` | false | ![**Sync**::platform](https://img.shields.io/badge/Sync-Platform-e8e8e8) | Whether run the sync to Bluesky. | |
| `SYNC_PROFILE_NAME` | false | ![**Sync**::profile](https://img.shields.io/badge/Sync-Profile-yellow) | Whether sync the profile name. |
| `SYNC_PROFILE_DESCRIPTION` | false | ![**Sync**::profile](https://img.shields.io/badge/Sync-Profile-yellow) | Whether sync the profile description. |
| `SYNC_PROFILE_PICTURE` | false | ![**Sync**::profile](https://img.shields.io/badge/Sync-Profile-yellow) | Whether sync the profile picture. |
| `SYNC_PROFILE_HEADER` | false | ![**Sync**::profile](https://img.shields.io/badge/Sync-Profile-yellow) | Whether sync the profile header (= banner). |
| `BACKDATE_BLUESKY_POSTS` | true | ![**Sync**::posts](https://img.shields.io/badge/Sync-Posts-green) | Whether backdate the posts on Bluesky. |

## Configuration with Docker 🐳

Expand Down
7 changes: 7 additions & 0 deletions docs/src/components/environment-generator/generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,13 @@ const Generator = ({ setConfiguration }) => {
value: 30,
env: "SYNC_FREQUENCY_MIN",
},
{
name: "timestamps",
label: "Synchronize bluesky timestamps to original tweet",
type: "boolean",
value: true,
env: "BACKDATE_BLUESKY_POSTS",
},
],
},
profile: {
Expand Down

0 comments on commit 9f66263

Please sign in to comment.