Skip to content

Commit 94036ce

Browse files
authored
chore: adjust branching price comms (supabase#36685)
1 parent 2bff117 commit 94036ce

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
There is no fixed fee for a Preview branch. You only pay for the usage it incurs. With Compute costs of <Price price="0.01344" /> per hour, a branch running on Micro Compute size starts at <Price price="0.32" /> per day.
1+
There is no fixed fee for a Preview branch. You only pay for the usage it incurs. A branch running on the default Micro Compute size starts at <Price price="0.01344" /> per hour.

apps/docs/content/guides/deployment/branching.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -716,7 +716,7 @@ You can make a similar setup with a distinct project for each environment. Or ju
716716

717717
Branching is available on the Pro Plan and above. The price is:
718718

719-
- Each Preview branch costs <Price price="0.32" /> per day
719+
- Each Preview branch costs <Price price="0.01344" /> per hour
720720
- Each Preview branch is billed until it is removed
721721

722722
## Troubleshooting

apps/studio/components/interfaces/BranchManagement/CreateBranchModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ export const CreateBranchModal = ({ visible, onClose }: CreateBranchModalProps)
281281
<DialogFooter className="sm:justify-between gap-2" padding="medium">
282282
<p className="flex items-center gap-2 text-sm text-foreground">
283283
<DollarSign size={16} strokeWidth={1.5} />
284-
Each preview branch costs $0.32 per day
284+
Each preview branch costs $0.01344 per hour
285285
</p>
286286
<div className="flex items-center gap-2">
287287
<Button disabled={isCreating} type="default" onClick={onClose}>

apps/studio/components/layouts/AppLayout/EnableBranchingButton/EnableBranchingModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ export const EnableBranchingModal = () => {
365365
</div>
366366
<div className="flex flex-col gap-y-1">
367367
<p className="text-sm text-foreground">
368-
Preview branches are billed $0.32 per day
368+
Preview branches are billed $0.01344 per hour
369369
</p>
370370
<p className="text-sm text-foreground-light">
371371
This cost will continue for as long as the branch has not been removed.

packages/shared-data/pricing.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,8 @@ export const pricing: Pricing = {
175175
title: 'Branching',
176176
plans: {
177177
free: false,
178-
pro: '$0.32 per branch, per day',
179-
team: '$0.32 per branch, per day',
178+
pro: '$0.01344 per branch, per hour',
179+
team: '$0.01344 per branch, per hour',
180180
enterprise: 'Custom',
181181
},
182182
usage_based: true,

0 commit comments

Comments
 (0)