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