Skip to content

Commit df047e3

Browse files
cojiclaude
andauthored
fix: regenerate OG image with updated tagline and features (#119)
- "Just SQLite. No Redis required." → "Steps that survive crashes. SQLite to PostgreSQL." - "Zero Infrastructure / SQLite only" → "Flexible Storage / SQLite · Turso · PostgreSQL" Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent cc43d0f commit df047e3

3 files changed

Lines changed: 14 additions & 3 deletions

File tree

CLAUDE.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,17 @@ When API changes are made, update `packages/durably/docs/llms.md` to keep it in
1717
- Bundled in the npm package for coding agents to read from `node_modules`
1818
- Symlinked to `website/public/llms.txt` for web access
1919

20+
### Generated Files
21+
22+
These files are generated from source — never edit directly:
23+
24+
```bash
25+
pnpm --filter durably-website generate:llms # website/public/llms.txt ← packages/*/docs/llms.md
26+
node website/scripts/generate-og-image.js # website/public/og-image.png
27+
```
28+
29+
Regenerate the OG image whenever the tagline or feature descriptions change.
30+
2031
## Core Concepts
2132

2233
- **Job**: Defined via `defineJob()` and registered via `jobs` option (or `.register()`), receives a step context and payload

website/public/og-image.png

3.8 KB
Loading

website/scripts/generate-og-image.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ async function generateOgImage() {
8282
maxWidth: '800px',
8383
lineHeight: 1.4,
8484
},
85-
children: 'Just SQLite. No Redis required.',
85+
children: 'Steps that survive crashes. SQLite to PostgreSQL.',
8686
},
8787
},
8888
{
@@ -112,7 +112,7 @@ async function generateOgImage() {
112112
fontWeight: 600,
113113
color: textColor,
114114
},
115-
children: 'Zero Infrastructure',
115+
children: 'Flexible Storage',
116116
},
117117
},
118118
{
@@ -122,7 +122,7 @@ async function generateOgImage() {
122122
fontSize: '14px',
123123
color: mutedColor,
124124
},
125-
children: 'SQLite only',
125+
children: 'SQLite · Turso · PostgreSQL',
126126
},
127127
},
128128
],

0 commit comments

Comments
 (0)