drizzle/meta/ was gitignored, so GitHub Actions had no _journal.json to copy into the image. The migrator requires this file to know which SQL files to apply. Unblock by committing the meta directory. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
51 lines
678 B
Plaintext
51 lines
678 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
.pnpm-store/
|
|
|
|
# Build output
|
|
.next/
|
|
out/
|
|
dist/
|
|
build/
|
|
*.tsbuildinfo
|
|
|
|
# Generated at build time by next.config.ts — do not commit
|
|
public/sw.js
|
|
|
|
# Auto-generated by Next.js — never edit, never commit
|
|
next-env.d.ts
|
|
|
|
# Env
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
.env.production
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
pnpm-debug.log*
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# Editors
|
|
.claude/
|
|
.vscode/*
|
|
!.vscode/extensions.json
|
|
!.vscode/settings.json.example
|
|
.idea/
|
|
|
|
# Coverage / test artifacts
|
|
coverage/
|
|
playwright-report/
|
|
test-results/
|
|
tests/.auth/
|
|
|
|
# drizzle/meta/ intentionally committed — migrator requires _journal.json at runtime
|
|
|
|
# Backups
|
|
deploy/backups/data/
|