forked from tradingbootcamp/platform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfly.toml
More file actions
32 lines (26 loc) · 700 Bytes
/
fly.toml
File metadata and controls
32 lines (26 loc) · 700 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# fly.toml app configuration file generated for trading-bootcamp on 2024-07-21T19:29:56-07:00
#
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
#
app = 'trading-bootcamp'
primary_region = 'ewr'
[build]
[env]
PORT = '8080'
KINDE_ISSUER = 'https://crazytieguy.kinde.com'
KINDE_AUDIENCE = 'trading-server-api,a9869bb1225848b9ad5bad2a04b72b5f'
DATABASE_URL = 'sqlite:///data/db.sqlite'
[http_service]
internal_port = 8080
force_https = true
auto_stop_machines = "stop"
auto_start_machines = true
min_machines_running = 0
processes = ['app']
[[vm]]
memory = '1GB'
cpu_kind = 'shared'
cpus = 4
[mounts]
source = "trading_bootcamp"
destination = "/data"