This repository has no description
1.3 kB
66 lines
1app = 'semble-development'
2primary_region = 'yyz'
3
4[build]
5
6[processes]
7 web = "npm start"
8 feed-worker = "npm run worker:feeds"
9 search-worker = "npm run worker:search"
10 firehose-worker = "npm run worker:firehose"
11 notification-worker = "npm run worker:notifications"
12 sync-worker = "npm run worker:sync"
13
14[http_service]
15 internal_port = 3000
16 force_https = true
17 auto_stop_machines = 'stop'
18 auto_start_machines = true
19 min_machines_running = 0
20 processes = ['web']
21
22[[vm]]
23 memory = '512mb'
24 cpu_kind = 'shared'
25 cpus = 1
26
27[[vm]]
28 processes = ['feed-worker']
29 memory = '256mb'
30 cpu_kind = 'shared'
31 cpus = 1
32
33[[vm]]
34 processes = ['search-worker']
35 memory = '256mb'
36 cpu_kind = 'shared'
37 cpus = 1
38
39[[vm]]
40 processes = ['firehose-worker']
41 memory = '512mb'
42 cpu_kind = 'shared'
43 cpus = 1
44 auto_stop_machines = false
45 min_machines_running = 1
46
47[[vm]]
48 processes = ['notification-worker']
49 memory = '256mb'
50 cpu_kind = 'shared'
51 cpus = 1
52
53[[vm]]
54 processes = ['sync-worker']
55 memory = '512mb'
56 cpu_kind = 'shared'
57 cpus = 1
58
59[env]
60NODE_ENV="dev"
61BASE_URL="https://api.dev.semble.so"
62HOST="0.0.0.0"
63APP_URL="https://dev.semble.so"
64ACCESS_TOKEN_EXPIRES_IN=300
65REFRESH_TOKEN_EXPIRES_IN=2592000
66ATPROTO_FIREHOSE_WEBSOCKET="wss://relay1.us-west.bsky.network"