Skip to content

Commit c2df954

Browse files
bchapuisclaude
andcommitted
Reduce trial credits from 10000 to 1000 for new accounts
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent b2109ef commit c2df954

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

apps/api/src/constants/billing.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ export const PRO_INCLUDED_CREDITS = 10000;
1414
* Number of one-time compute credits for Trial accounts.
1515
* Execution blocks when exhausted.
1616
*/
17-
export const TRIAL_CREDITS = 10000;
17+
export const TRIAL_CREDITS = 1000;

apps/api/src/db/schema/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ export const organizations = sqliteTable(
134134
{
135135
id: text("id").primaryKey(),
136136
name: text("name").notNull(),
137-
computeCredits: integer("compute_credits").notNull().default(10000),
137+
computeCredits: integer("compute_credits").notNull().default(1000),
138138
stripeCustomerId: text("stripe_customer_id"),
139139
stripeSubscriptionId: text("stripe_subscription_id"),
140140
subscriptionStatus: text(

0 commit comments

Comments
 (0)