an atproto based link aggregator

Fix: use single volume for Fly.io

Fly.io only supports one volume per machine. Consolidate:
- LiteFS data at /data/litefs (persistent)
- Local DB at /data/local.db (persistent)
- FUSE mount at /litefs (virtual, created by LiteFS)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

+4 -7
+2 -2
Dockerfile
··· 30 30 COPY --from=build /app/drizzle ./drizzle 31 31 COPY litefs.yml /etc/litefs.yml 32 32 33 - # Create directories 34 - RUN mkdir -p /data /litefs /var/lib/litefs 33 + # Create directories (/data is the mounted volume, /litefs is FUSE mount) 34 + RUN mkdir -p /data/litefs /litefs 35 35 36 36 ENV NODE_ENV=production 37 37 ENV PORT=3000
+1 -4
fly.toml
··· 13 13 LOCAL_DB_PATH = '/data/local.db' 14 14 NODE_ENV = 'production' 15 15 16 + # Single volume for both LiteFS data and local DB 16 17 [[mounts]] 17 18 source = 'papili_data' 18 19 destination = '/data' 19 - 20 - [[mounts]] 21 - source = 'litefs' 22 - destination = '/litefs' 23 20 24 21 [http_service] 25 22 internal_port = 3000
+1 -1
litefs.yml
··· 5 5 dir: '/litefs' 6 6 7 7 data: 8 - dir: '/var/lib/litefs' 8 + dir: '/data/litefs' 9 9 10 10 lease: 11 11 type: 'consul'