We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2109ef commit c2df954Copy full SHA for c2df954
2 files changed
apps/api/src/constants/billing.ts
@@ -14,4 +14,4 @@ export const PRO_INCLUDED_CREDITS = 10000;
14
* Number of one-time compute credits for Trial accounts.
15
* Execution blocks when exhausted.
16
*/
17
-export const TRIAL_CREDITS = 10000;
+export const TRIAL_CREDITS = 1000;
apps/api/src/db/schema/index.ts
@@ -134,7 +134,7 @@ export const organizations = sqliteTable(
134
{
135
id: text("id").primaryKey(),
136
name: text("name").notNull(),
137
- computeCredits: integer("compute_credits").notNull().default(10000),
+ computeCredits: integer("compute_credits").notNull().default(1000),
138
stripeCustomerId: text("stripe_customer_id"),
139
stripeSubscriptionId: text("stripe_subscription_id"),
140
subscriptionStatus: text(
0 commit comments