Skip to content

Commit

Permalink
Lower the Postgres default disk size to 1 GB (#3481)
Browse files Browse the repository at this point in the history
A 10 GB default disk size hinders `fly launch` by requiring a
credit card, which introduces friction for anyone just interested
in trying us out.

More here: https://flyio.discourse.team/t/making-the-rails-speedrun-more-credible/5512/18?u=clouvet
  • Loading branch information
clouvet committed Apr 25, 2024
1 parent 44aedf5 commit a5a4c46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/command/launch/plan/postgres.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func DefaultPostgres(plan *LaunchPlan) PostgresPlan {
VmSize: "shared-cpu-1x",
VmRam: 1024,
Nodes: 1,
DiskSizeGB: 10,
DiskSizeGB: 1,
},
}
}
Expand Down

0 comments on commit a5a4c46

Please sign in to comment.