alpha
Login
or
Join now
nandi.uk
/
semble
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
fix fly process scripts
author
Wesley Finck
date
4 months ago
(Mar 9, 2026, 4:03 PM -0700)
commit
4e7e1b39
4e7e1b395ac3f093d84c89272924997f35bc34d8
parent
db7b4d3e
db7b4d3e2664abd1336091eccffd08120a31d179
+12
-12
2 changed files
Expand all
Collapse all
Unified
Split
fly.development.toml
fly.production.toml
+6
-6
fly.development.toml
View file
Reviewed
···
4
4
[build]
5
5
6
6
[processes]
7
7
-
web = "PROCESS_TYPE=web npm start"
8
8
-
feed-worker = "PROCESS_TYPE=feed-worker npm run worker:feeds"
9
9
-
search-worker = "PROCESS_TYPE=search-worker npm run worker:search"
10
10
-
firehose-worker = "PROCESS_TYPE=firehose-worker npm run worker:firehose"
11
11
-
notification-worker = "PROCESS_TYPE=notification-worker npm run worker:notifications"
12
12
-
sync-worker = "PROCESS_TYPE=sync-worker npm run worker:sync"
7
7
+
web = "sh -c 'PROCESS_TYPE=web npm start'"
8
8
+
feed-worker = "sh -c 'PROCESS_TYPE=feed-worker npm run worker:feeds'"
9
9
+
search-worker = "sh -c 'PROCESS_TYPE=search-worker npm run worker:search'"
10
10
+
firehose-worker = "sh -c 'PROCESS_TYPE=firehose-worker npm run worker:firehose'"
11
11
+
notification-worker = "sh -c 'PROCESS_TYPE=notification-worker npm run worker:notifications'"
12
12
+
sync-worker = "sh -c 'PROCESS_TYPE=sync-worker npm run worker:sync'"
13
13
14
14
[http_service]
15
15
internal_port = 3000
+6
-6
fly.production.toml
View file
Reviewed
···
4
4
[build]
5
5
6
6
[processes]
7
7
-
web = "PROCESS_TYPE=web npm start"
8
8
-
feed-worker = "PROCESS_TYPE=feed-worker npm run worker:feeds"
9
9
-
search-worker = "PROCESS_TYPE=search-worker npm run worker:search"
10
10
-
firehose-worker = "PROCESS_TYPE=firehose-worker npm run worker:firehose"
11
11
-
notification-worker = "PROCESS_TYPE=notification-worker npm run worker:notifications"
12
12
-
sync-worker = "PROCESS_TYPE=sync-worker npm run worker:sync"
7
7
+
web = "sh -c 'PROCESS_TYPE=web npm start'"
8
8
+
feed-worker = "sh -c 'PROCESS_TYPE=feed-worker npm run worker:feeds'"
9
9
+
search-worker = "sh -c 'PROCESS_TYPE=search-worker npm run worker:search'"
10
10
+
firehose-worker = "sh -c 'PROCESS_TYPE=firehose-worker npm run worker:firehose'"
11
11
+
notification-worker = "sh -c 'PROCESS_TYPE=notification-worker npm run worker:notifications'"
12
12
+
sync-worker = "sh -c 'PROCESS_TYPE=sync-worker npm run worker:sync'"
13
13
14
14
[http_service]
15
15
internal_port = 3000