an atproto based link aggregator

feat: simplify fly.toml, remove LiteFS, always-on machine

+6 -11
+6 -11
fly.toml
··· 1 - # fly.toml app configuration file generated for papili-one on 2025-12-08T21:19:07-05:00 2 - # 3 - # See https://fly.io/docs/reference/configuration/ for information about how to use this file. 4 - # 5 - 6 1 app = 'papili-one' 7 2 primary_region = 'sjc' 8 3 9 4 [build] 10 5 11 6 [env] 12 - CONTENT_DB_PATH = '/litefs/content.db' 13 - LOCAL_DB_PATH = '/var/lib/litefs/local.db' 7 + CONTENT_DB_PATH = '/data/content.db' 8 + LOCAL_DB_PATH = '/data/local.db' 14 9 NODE_ENV = 'production' 15 10 HOST = '0.0.0.0' 16 11 17 - # Volume for LiteFS data and local DB 12 + # Persistent volume for SQLite databases 18 13 [[mounts]] 19 14 source = 'papili_data' 20 - destination = '/var/lib/litefs' 15 + destination = '/data' 21 16 22 17 [http_service] 23 18 internal_port = 3000 24 19 force_https = true 25 - auto_stop_machines = 'stop' 20 + auto_stop_machines = 'off' 26 21 auto_start_machines = true 27 - min_machines_running = 0 22 + min_machines_running = 1 28 23 processes = ['app'] 29 24 30 25 [[vm]]