Add Vercel Analytics and improve PDF export layout

The main changes are: - Add Vercel Analytics to track site usage -
Improve PDF invoice layout and pagination: - Better line height and
padding for description text - Dynamic row height based on content
length - More accurate pagination calculations - Prevent orphaned items
on last page - Clean up formatting and spacing - Remove database backup
and Docker files
This commit is contained in:
2025-07-29 19:48:57 -04:00
parent 9370d5c935
commit 8cd9035f3c
6 changed files with 144 additions and 551 deletions

View File

@@ -1,21 +0,0 @@
services:
db:
image: postgres:15
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: beenvoice
PGSSLMODE: disable
command: -c ssl=off
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 5s
timeout: 5s
retries: 5
volumes:
postgres_data: