src/lib/dev-login-config.ts — startup assertion: throws if NODE_ENV=production + ENABLE_DEV_LOGIN=true, scoped to runtime (skipped during next build).
Container
scripts/migrate.mjs — runs Drizzle migrations against DATABASE_URL.
deploy/docker-entrypoint.sh — runs migrations then exec node server.js. Skip with RUN_MIGRATIONS=false.
Dockerfile — copies drizzle/, scripts/migrate.mjs, entrypoint into runner stage; ENTRYPOINT now points at the script.
Compose
deploy/compose.yaml — famapp now image: ${FAMAPP_IMAGE:-ghcr.io/ginnoir/famapp:latest} (build still works locally as fallback). Authentik pinned via AUTHENTIK_IMAGE_TAG (default 2024.12.3). New RUN_MIGRATIONS env passed through.
.env.production.example — documents FAMAPP_IMAGE, AUTHENTIK_IMAGE_TAG, RUN_MIGRATIONS.
CI/CD
.github/workflows/ci.yml — push/PR: typecheck + lint + format:check + build.
.github/workflows/release.yml — v* tag: build + push ghcr.io/ginnoir/famapp:vX.Y.Z, :X.Y, :latest to GHCR.
Docs
deploy/README.md — full deploy/rollback/release runbook.
CHANGELOG.md — release log seeded with an Unreleased entry.
docs/tasks/09-pre-deploy-checklist.md — task 09 reframed from one-shot removal to a recurring pre-deploy checklist.
STATUS.md — updated.
Verified: pnpm typecheck, pnpm format, pnpm build, and docker compose config all clean.
56 lines
1.5 KiB
TypeScript
56 lines
1.5 KiB
TypeScript
import { eq } from "drizzle-orm";
|
|
import { db } from "@/lib/db";
|
|
import logger from "@/lib/logger";
|
|
import { notifications, users } from "./schema";
|
|
import { sendPush } from "./push";
|
|
|
|
type NotifyPayload = {
|
|
title: string;
|
|
body: string;
|
|
url?: string;
|
|
channels?: ("push" | "inapp" | "ntfy")[];
|
|
};
|
|
|
|
export async function notify(userId: string, payload: NotifyPayload) {
|
|
const channels = payload.channels ?? ["push", "inapp"];
|
|
|
|
const [user] = await db
|
|
.select({
|
|
notifPush: users.notifPush,
|
|
notifInApp: users.notifInApp,
|
|
notifNtfy: users.notifNtfy,
|
|
})
|
|
.from(users)
|
|
.where(eq(users.id, userId))
|
|
.limit(1);
|
|
|
|
if (!user) return;
|
|
|
|
const pushEnabled = process.env["VAPID_PUBLIC_KEY"] && process.env["VAPID_PRIVATE_KEY"];
|
|
|
|
if (channels.includes("push") && user.notifPush && pushEnabled) {
|
|
await sendPush(userId, payload).catch((err) => logger.error({ err }, "push channel failed"));
|
|
}
|
|
|
|
if (channels.includes("inapp") && user.notifInApp) {
|
|
await db.insert(notifications).values({
|
|
userId,
|
|
title: payload.title,
|
|
body: payload.body,
|
|
url: payload.url,
|
|
});
|
|
}
|
|
|
|
if (channels.includes("ntfy") && user.notifNtfy) {
|
|
const ntfyUrl = process.env["NTFY_URL"];
|
|
const ntfyTopic = process.env["NTFY_TOPIC"];
|
|
if (ntfyUrl && ntfyTopic) {
|
|
await fetch(`${ntfyUrl}/${ntfyTopic}`, {
|
|
method: "POST",
|
|
headers: { Title: payload.title, "Content-Type": "text/plain" },
|
|
body: payload.body,
|
|
}).catch((err) => logger.error({ err }, "ntfy delivery failed"));
|
|
}
|
|
}
|
|
}
|