Added VM specification to fly.toml to keep within Fly.io free allowances (#306)

This commit is contained in:
Eric Karr
2024-02-08 04:26:35 -04:00
committed by GitHub
parent 9bacf7f2d7
commit 67f76080a9
2 changed files with 11 additions and 0 deletions

View File

@@ -160,6 +160,11 @@ Now that youve gotten the CLI set up, youre ready to deploy your app to Fl
interval = "15s"
restart_limit = 0
timeout = "2s"
[[vm]]
cpu_kind = "shared"
cpus = 1
memory_mb = 256
```
</details>

View File

@@ -36,3 +36,9 @@
interval = "15s"
restart_limit = 0
timeout = "2s"
[[vm]]
cpu_kind = "shared"
cpus = 1
memory_mb = 256