Skip to content

Commit

Permalink
Update deploy rate limiting
Browse files Browse the repository at this point in the history
  • Loading branch information
255kb committed Jul 24, 2024
1 parent c16f529 commit 91e789e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,15 +68,15 @@ Some **quotas and limits apply** to the cloud deployment feature. Here are the m
- **Solo plan**:
- 1 cloud deployment.
- 50 000 requests per month.
- 2 requests per second.
- 3 requests per second.
- **Team plan**:
- 3 cloud deployments.
- 100 000 requests per month.
- 3 requests per second.
- 5 requests per second.
- **Enterprise plan**:
- 5 cloud deployments.
- 250 000 requests per month.
- 5 requests per second.
- 10 requests per second.

These quotas and limits are subject to change. Please refer to your [account settings](/account/subscription/) for the latest information.

Expand Down
6 changes: 3 additions & 3 deletions data/pricing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const pricing = {
syncQuota: 5,
deployQuota: 1,
deployCallsQuota: 50_000,
deployReqSQuota: 2,
deployReqSQuota: 3,
discount: '🏷️ 2 months free'
},
TEAM: {
Expand All @@ -30,7 +30,7 @@ export const pricing = {
syncQuota: 10,
deployQuota: 3,
deployCallsQuota: 100_000,
deployReqSQuota: 3,
deployReqSQuota: 5,
discount: '🏷️ 2 months free',
minSeats: 1,
maxSeats: 5
Expand All @@ -49,7 +49,7 @@ export const pricing = {
syncQuota: 20,
deployQuota: 5,
deployCallsQuota: 250_000,
deployReqSQuota: 5,
deployReqSQuota: 10,
discount: null,
minSeats: 1,
maxSeats: 99
Expand Down

0 comments on commit 91e789e

Please sign in to comment.