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:
@@ -77,9 +77,7 @@ export function NoteEditor({ note }: { note?: NoteDto }) {
|
||||
{pinned ? "Unpin note" : "Pin note"}
|
||||
</Button>
|
||||
) : null}
|
||||
{currentNote ? (
|
||||
<ShareButton entityType="notes.note" entityId={currentNote.id} />
|
||||
) : null}
|
||||
{currentNote ? <ShareButton entityType="notes.note" entityId={currentNote.id} /> : null}
|
||||
{currentNote ? (
|
||||
<Button variant="destructive" onClick={removeNote} disabled={isPending}>
|
||||
<Trash2 />
|
||||
@@ -97,7 +95,11 @@ export function NoteEditor({ note }: { note?: NoteDto }) {
|
||||
<section className="grid gap-4 rounded-lg border bg-background p-4">
|
||||
<div className="space-y-1.5">
|
||||
<Label htmlFor="note-title">Title</Label>
|
||||
<Input id="note-title" value={title} onChange={(event) => setTitle(event.target.value)} />
|
||||
<Input
|
||||
id="note-title"
|
||||
value={title}
|
||||
onChange={(event) => setTitle(event.target.value)}
|
||||
/>
|
||||
</div>
|
||||
<div className="space-y-1.5">
|
||||
<Label htmlFor="note-body">Body</Label>
|
||||
|
||||
@@ -20,9 +20,7 @@ export function NoteSharedView({ data }: { data: NoteShareData }) {
|
||||
<h1 className="text-2xl font-semibold">{data.title}</h1>
|
||||
<p className="text-xs text-muted-foreground">Updated {updatedAt}</p>
|
||||
</header>
|
||||
{data.body && (
|
||||
<p className="whitespace-pre-wrap text-sm leading-relaxed">{data.body}</p>
|
||||
)}
|
||||
{data.body && <p className="whitespace-pre-wrap text-sm leading-relaxed">{data.body}</p>}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -26,9 +26,7 @@ async function NotesWidget({ config }: { config: unknown; ctx: WidgetContext })
|
||||
{notes.map((note) => (
|
||||
<li key={note.id} className="space-y-0.5">
|
||||
<p className="text-sm font-medium leading-snug">{note.title}</p>
|
||||
{note.body && (
|
||||
<p className="line-clamp-2 text-xs text-muted-foreground">{note.body}</p>
|
||||
)}
|
||||
{note.body && <p className="line-clamp-2 text-xs text-muted-foreground">{note.body}</p>}
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
|
||||
@@ -53,7 +53,12 @@ export async function createNote(input: z.input<typeof noteInput>) {
|
||||
});
|
||||
}
|
||||
|
||||
await logActivity({ entityType: "notes.note", entityId: note.id, action: "create", payload: { title: note.title } });
|
||||
await logActivity({
|
||||
entityType: "notes.note",
|
||||
entityId: note.id,
|
||||
action: "create",
|
||||
payload: { title: note.title },
|
||||
});
|
||||
revalidatePath("/notes");
|
||||
return note;
|
||||
}
|
||||
@@ -91,7 +96,12 @@ export async function updateNote(input: z.input<typeof updateNoteInput>) {
|
||||
}
|
||||
}
|
||||
|
||||
await logActivity({ entityType: "notes.note", entityId: note.id, action: "update", payload: { title: note.title } });
|
||||
await logActivity({
|
||||
entityType: "notes.note",
|
||||
entityId: note.id,
|
||||
action: "update",
|
||||
payload: { title: note.title },
|
||||
});
|
||||
revalidatePath("/notes");
|
||||
revalidatePath(`/notes/${parsed.id}`);
|
||||
return note;
|
||||
@@ -108,7 +118,12 @@ export async function setNotePinned(input: { id: string; pinned: boolean }) {
|
||||
.where(eq(notes.id, parsed.id));
|
||||
|
||||
const note = await getNote(parsed.id);
|
||||
await logActivity({ entityType: "notes.note", entityId: parsed.id, action: parsed.pinned ? "pin" : "unpin", payload: note ? { title: note.title } : undefined });
|
||||
await logActivity({
|
||||
entityType: "notes.note",
|
||||
entityId: parsed.id,
|
||||
action: parsed.pinned ? "pin" : "unpin",
|
||||
payload: note ? { title: note.title } : undefined,
|
||||
});
|
||||
revalidatePath("/notes");
|
||||
revalidatePath(`/notes/${parsed.id}`);
|
||||
return note;
|
||||
@@ -120,7 +135,12 @@ export async function deleteNote(input: { id: string }) {
|
||||
await assertCanAccessNote(parsed.id, household.id);
|
||||
|
||||
const note = await getNote(parsed.id);
|
||||
await logActivity({ entityType: "notes.note", entityId: parsed.id, action: "delete", payload: note ? { title: note.title } : undefined });
|
||||
await logActivity({
|
||||
entityType: "notes.note",
|
||||
entityId: parsed.id,
|
||||
action: "delete",
|
||||
payload: note ? { title: note.title } : undefined,
|
||||
});
|
||||
|
||||
await cancelReminder("notes.note", parsed.id);
|
||||
await db.delete(notes).where(eq(notes.id, parsed.id));
|
||||
|
||||
Reference in New Issue
Block a user