Skip to content

Commit

Permalink
Increase rate limit
Browse files Browse the repository at this point in the history
  • Loading branch information
255kb committed Jan 21, 2025
1 parent 006540e commit 1a91a03
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 15 deletions.
5 changes: 1 addition & 4 deletions components/plans.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -716,10 +716,7 @@ const PlansView: FunctionComponent<{
<td className='text-center'>Custom</td>
</tr>
<tr>
<td>
Request rate limit{' '}
<Tooltip text='During trial, the request rate limit is 1 request per second.'></Tooltip>
</td>
<td>Request rate limit</td>
<td className='text-center'>
{pricing.SOLO.deployReqSQuota}/sec
</td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ Some **quotas and limits apply** to the cloud deployment feature. Here are the m
- **Solo plan**:
- 1 cloud deployment.
- 50&nbsp;000 requests per month.
- 3 requests per second (2 request per second during trial).
- 5 requests per second.
- **Team plan**:
- 3 cloud deployments.
- 100&nbsp;000 requests per month.
- 5 requests per second (2 request per second during trial).
- 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
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,11 @@ Some **quotas and limits apply** to the cloud deployment feature. Here are the m
- **Solo plan**:
- 1 cloud deployment.
- 50&nbsp;000 requests per month.
- 3 requests per second (1 request per second during trial).
- 5 requests per second.
- **Team plan**:
- 3 cloud deployments.
- 100&nbsp;000 requests per month.
- 5 requests per second (1 request per second during trial).
- 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
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,11 @@ Some **quotas and limits apply** to the cloud deployment feature. Here are the m
- **Solo plan**:
- 1 cloud deployment.
- 50&nbsp;000 requests per month.
- 3 requests per second (1 request per second during trial).
- 5 requests per second.
- **Team plan**:
- 3 cloud deployments.
- 100&nbsp;000 requests per month.
- 5 requests per second (1 request per second during trial).
- 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
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,11 @@ Some **quotas and limits apply** to the cloud deployment feature. Here are the m
- **Solo plan**:
- 1 cloud deployment.
- 50&nbsp;000 requests per month.
- 3 requests per second (1 request per second during trial).
- 5 requests per second.
- **Team plan**:
- 3 cloud deployments.
- 100&nbsp;000 requests per month.
- 5 requests per second (1 request per second during trial).
- 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: 3,
deployReqSQuota: 5,
discount: '🏷️ 2 months free'
},
TEAM: {
Expand All @@ -30,7 +30,7 @@ export const pricing = {
syncQuota: 10,
deployQuota: 3,
deployCallsQuota: 100_000,
deployReqSQuota: 5,
deployReqSQuota: 10,
discount: '🏷️ 2 months free',
minSeats: 1,
maxSeats: 10
Expand All @@ -49,7 +49,7 @@ export const pricing = {
syncQuota: 20,
deployQuota: 5,
deployCallsQuota: 250_000,
deployReqSQuota: 10,
deployReqSQuota: 20,
discount: null,
minSeats: 1,
maxSeats: 99
Expand Down

0 comments on commit 1a91a03

Please sign in to comment.