Skip to content

Commit

Permalink
Increase memory allocation in fly.toml from 1024mb to 2048mb
Browse files Browse the repository at this point in the history
  • Loading branch information
andersy005 committed Oct 18, 2024
1 parent 0964e21 commit 094a799
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fly.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ buildpacks = ["heroku/buildpack-python:0.17.0"]


[[vm]]
size = "shared-cpu-1x"
memory = "1024mb"
size = "shared-cpu-1x"
memory = "2048mb"


[env]
PORT = "8000"

[processes]
app = "gunicorn -w 1 -k uvicorn.workers.UvicornWorker src.app:app"
app = "gunicorn -w 1 -k uvicorn.workers.UvicornWorker src.app:app"

[[services]]
processes = ["app"]
Expand Down

0 comments on commit 094a799

Please sign in to comment.