tangled
alpha
login
or
join now
aparker.io
/
papili.one
6
fork
atom
an atproto based link aggregator
6
fork
atom
overview
issues
pulls
pipelines
feat: simplify fly.toml, remove LiteFS, always-on machine
aparker.io
3 months ago
4e8d4112
e8db2044
+6
-11
1 changed file
expand all
collapse all
unified
split
fly.toml
+6
-11
fly.toml
···
1
1
-
# fly.toml app configuration file generated for papili-one on 2025-12-08T21:19:07-05:00
2
2
-
#
3
3
-
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
4
4
-
#
5
5
-
6
1
app = 'papili-one'
7
2
primary_region = 'sjc'
8
3
9
4
[build]
10
5
11
6
[env]
12
12
-
CONTENT_DB_PATH = '/litefs/content.db'
13
13
-
LOCAL_DB_PATH = '/var/lib/litefs/local.db'
7
7
+
CONTENT_DB_PATH = '/data/content.db'
8
8
+
LOCAL_DB_PATH = '/data/local.db'
14
9
NODE_ENV = 'production'
15
10
HOST = '0.0.0.0'
16
11
17
17
-
# Volume for LiteFS data and local DB
12
12
+
# Persistent volume for SQLite databases
18
13
[[mounts]]
19
14
source = 'papili_data'
20
20
-
destination = '/var/lib/litefs'
15
15
+
destination = '/data'
21
16
22
17
[http_service]
23
18
internal_port = 3000
24
19
force_https = true
25
25
-
auto_stop_machines = 'stop'
20
20
+
auto_stop_machines = 'off'
26
21
auto_start_machines = true
27
27
-
min_machines_running = 0
22
22
+
min_machines_running = 1
28
23
processes = ['app']
29
24
30
25
[[vm]]