Code-side

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.
This commit is contained in:
ginnoir
2026-05-06 17:37:37 -05:00
parent 285a460eb8
commit c73338e256
73 changed files with 955 additions and 728 deletions
+8 -1
View File
@@ -10,7 +10,14 @@ export type {
SearchResult,
ActivityLogEntry,
} from "./module";
export { registerModule, getRegistry, getEntityType, getWidget, getQuickAdds, getWidgetMetas } from "./registry";
export {
registerModule,
getRegistry,
getEntityType,
getWidget,
getQuickAdds,
getWidgetMetas,
} from "./registry";
export type { QuickAddItem, SerializedQuickAddItem, SerializedWidgetMeta } from "./registry";
export { logActivity, logShareActivity } from "./activity";
export { createShareLink, resolveShareToken, revokeShareLink } from "./share";
+1 -2
View File
@@ -30,8 +30,7 @@ async function ActivityWidget({ config }: { config: unknown }) {
{entries.map((entry) => {
const reg = getEntityType(entry.entityType);
const description =
reg?.renderActivity?.(entry as ActivityLogEntry) ??
`${entry.action} ${entry.entityType}`;
reg?.renderActivity?.(entry as ActivityLogEntry) ?? `${entry.action} ${entry.entityType}`;
return (
<li key={entry.id} className="flex items-start gap-2 text-sm">
<span className="mt-0.5 shrink-0 text-xs text-muted-foreground">
+6 -4
View File
@@ -15,7 +15,11 @@ 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 })
.select({
notifPush: users.notifPush,
notifInApp: users.notifInApp,
notifNtfy: users.notifNtfy,
})
.from(users)
.where(eq(users.id, userId))
.limit(1);
@@ -25,9 +29,7 @@ export async function notify(userId: string, payload: NotifyPayload) {
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"),
);
await sendPush(userId, payload).catch((err) => logger.error({ err }, "push channel failed"));
}
if (channels.includes("inapp") && user.notifInApp) {
+18 -4
View File
@@ -1,4 +1,9 @@
import type { ModuleManifest, EntityTypeRegistration, DashboardWidget, QuickAddAction } from "./module";
import type {
ModuleManifest,
EntityTypeRegistration,
DashboardWidget,
QuickAddAction,
} from "./module";
const modules = new Map<string, ModuleManifest>();
const entityTypes = new Map<string, EntityTypeRegistration>();
@@ -54,9 +59,18 @@ export type SerializedWidgetMeta = {
};
export function getWidgetMetas(): SerializedWidgetMeta[] {
return [...widgets.values()].map(({ id, title, description, category, defaultSize, minSize, maxSize, defaultConfig }) => ({
id, title, description, category, defaultSize, minSize, maxSize, defaultConfig,
}));
return [...widgets.values()].map(
({ id, title, description, category, defaultSize, minSize, maxSize, defaultConfig }) => ({
id,
title,
description,
category,
defaultSize,
minSize,
maxSize,
defaultConfig,
}),
);
}
export function getQuickAdds(): SerializedQuickAddItem[] {
+6 -1
View File
@@ -64,7 +64,12 @@ export async function tickReminders() {
await tx
.update(reminders)
.set({ firedAt: now })
.where(inArray(reminders.id, dueReminders.map((r) => r.id)));
.where(
inArray(
reminders.id,
dueReminders.map((r) => r.id),
),
);
}
});
} catch (err) {
+1 -2
View File
@@ -100,8 +100,7 @@ export const activityLog = pgTable(
.references(() => households.id, { onDelete: "cascade" }),
entityType: text("entity_type").notNull(),
entityId: uuid("entity_id").notNull(),
actorId: uuid("actor_id")
.references(() => users.id, { onDelete: "set null" }),
actorId: uuid("actor_id").references(() => users.id, { onDelete: "set null" }),
action: text("action").notNull(),
payload: jsonb("payload").$type<Record<string, unknown> | null>(),
createdAt: timestamp("created_at", { withTimezone: true }).notNull().defaultNow(),
+1 -3
View File
@@ -59,9 +59,7 @@ export async function createShareLink(
return { url: buildUrl(rawToken), token: rawToken, expiresAt };
}
export async function resolveShareToken(
rawToken: string,
): Promise<{
export async function resolveShareToken(rawToken: string): Promise<{
entityType: string;
entityId: string;
capabilities: ShareLinkCapabilities;