15 lines
535 B
Plaintext
15 lines
535 B
Plaintext
# Copy this file to .env and fill in the values before running.
|
|
|
|
# Password for the letter writer (full access: read + write)
|
|
WRITER_PASSWORD=your-writer-password-here
|
|
|
|
# Password for the reader / partner (read-only access)
|
|
READER_PASSWORD=your-reader-password-here
|
|
|
|
# A long random string used to sign JWT tokens.
|
|
# Generate one with: node -e "console.log(require('crypto').randomBytes(32).toString('hex'))"
|
|
JWT_SECRET=change-this-to-a-random-secret
|
|
|
|
# Discord webhook URL for first-read notifications (optional)
|
|
DISCORD_WEBHOOK_URL=
|