mirror of
https://github.com/pupperpowell/bibdle.git
synced 2026-04-05 09:23:31 -04:00
30 lines
773 B
Plaintext
30 lines
773 B
Plaintext
DATABASE_URL=example.db
|
|
|
|
# Cron job secret for protected endpoints (e.g. send-daily-verse)
|
|
CRON_SECRET=your-cron-secret-here
|
|
|
|
# Discord webhook URL for posting the daily verse
|
|
DISCORD_DAILY_WEBHOOK=https://discord.com/api/webhooks/your-webhook-url
|
|
|
|
PUBLIC_SITE_URL=https://bibdle.com
|
|
|
|
# nodemailer
|
|
SMTP_USERNAME=email@example.com
|
|
SMTP_TOKEN=TOKEN
|
|
SMTP_SERVER=smtp.example.com
|
|
SMTP_PORT=port
|
|
# note from mail provider: Enable TLS or SSL on the external service if it is supported.
|
|
|
|
# sign in with Discord
|
|
|
|
# sign in with google
|
|
|
|
# sign in with apple
|
|
AUTH_SECRET=your-random-secret-here
|
|
APPLE_ID=com.yourcompany.yourapp.client
|
|
APPLE_TEAM_ID=your-team-id
|
|
APPLE_KEY_ID=your-key-id
|
|
APPLE_PRIVATE_KEY="-----BEGIN PRIVATE KEY-----
|
|
your-private-key-here
|
|
-----END PRIVATE KEY-----"
|