Task 40 — Web Push (VAPID): - Add web-push package + @types/web-push - pnpm vapid:generate script prints VAPID_PUBLIC_KEY, VAPID_PRIVATE_KEY, NEXT_PUBLIC_VAPID_PUBLIC_KEY - push_subscriptions schema + migration 0013 - _core/push.ts: sendPush() iterates subscriptions, prunes 404/410 stale entries - SW push/notificationclick event handlers added to generated sw.js template - PushOptIn client component on /settings (opt-in, disable, send test) Task 42 — Notification bus + ntfy adapter: - notifications table + notif_push/notif_inapp/notif_ntfy user columns (migration 0013) - _core/notify.ts: notify() fans out to push, in-app DB, and optional ntfy POST - NotificationBell server component in AppNav: unread badge, dropdown inbox, mark-read - NotifyChannelToggles client component in /settings Task 41 — Reminders engine: - fired_at + created_by added to reminders; default channel changed to 'auto' - _core/reminders.ts: scheduleReminder (upsert), cancelReminder, listReminders, tickReminders - tickReminders uses pg_try_advisory_xact_lock for horizontal-scale safety - src/instrumentation.ts starts reminder worker (30s tick) on Node.js boot - Notes actions use scheduleReminder/cancelReminder instead of raw SQL - Calendar createEvent: optional remindMinutesBefore, deleteEvent: cancelReminder - Calendar-shell: "Remind me 30 min before" checkbox on new event form Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
34 lines
936 B
Bash
34 lines
936 B
Bash
# Public app URL (used for OIDC redirect URIs, share links, etc.)
|
|
NEXT_PUBLIC_APP_URL=https://fam.ginnoir.com
|
|
|
|
# Postgres
|
|
DATABASE_URL=postgres://famapp:famapp@localhost:5432/famapp
|
|
|
|
# Auth.js
|
|
AUTH_SECRET=replace-with-openssl-rand-base64-32
|
|
|
|
# Local development only. Enables a /login "Dev login" button that creates a
|
|
# database session for DEV_LOGIN_EMAIL without contacting Authentik.
|
|
ENABLE_DEV_LOGIN=false
|
|
DEV_LOGIN_EMAIL=dev@famapp.local
|
|
DEV_LOGIN_NAME=Dev User
|
|
DEV_HOUSEHOLD_NAME=Home
|
|
|
|
# OIDC (Authentik)
|
|
AUTH_OIDC_ISSUER=https://auth.ginnoir.com/application/o/famapp/
|
|
AUTH_OIDC_CLIENT_ID=replace-me
|
|
AUTH_OIDC_CLIENT_SECRET=replace-me
|
|
|
|
# Web Push (generate with: pnpm vapid:generate — copy all three lines to .env)
|
|
VAPID_PUBLIC_KEY=
|
|
VAPID_PRIVATE_KEY=
|
|
NEXT_PUBLIC_VAPID_PUBLIC_KEY=
|
|
VAPID_SUBJECT=mailto:you@example.com
|
|
|
|
# ntfy (optional fallback channel; leave blank to disable)
|
|
NTFY_URL=
|
|
NTFY_TOPIC=
|
|
|
|
# Logging
|
|
LOG_LEVEL=info
|