Skip to content

Commit ac75404

Browse files
testac974claude
andcommitted
Configure Buttondown username for email signup
- Set username to "agentic-coding-book" - Works immediately in production without env var setup - Can still override with NEXT_PUBLIC_BUTTONDOWN_USERNAME if needed Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 2d09b8f commit ac75404

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

website/components/email-signup.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ export function EmailSignup() {
2121

2222
try {
2323
// Use Buttondown's public form endpoint (no auth required)
24-
// User needs to set their username in .env.local as NEXT_PUBLIC_BUTTONDOWN_USERNAME
25-
const username = process.env.NEXT_PUBLIC_BUTTONDOWN_USERNAME || "YOUR_BUTTONDOWN_USERNAME"
24+
const username = process.env.NEXT_PUBLIC_BUTTONDOWN_USERNAME || "agentic-coding-book"
2625

2726
const formData = new FormData()
2827
formData.append("email", email)

0 commit comments

Comments
 (0)