1 parent 859106e commit b3f1a96Copy full SHA for b3f1a96
1 file changed
infra/console.ts
@@ -150,8 +150,9 @@ const zenLitePrice = new stripe.Price("ZenLitePrice", {
150
})
151
const ZEN_LITE_PRICE = new sst.Linkable("ZEN_LITE_PRICE", {
152
properties: {
153
- product: zenLiteProduct.id,
154
- price: zenLitePrice.id,
+ // Use existing Go resources in dev's checkout Stripe account.
+ product: $app.stage === "dev" ? "prod_U1tUscpmwtV2bG" : zenLiteProduct.id,
155
+ price: $app.stage === "dev" ? "price_1T3phhE7fOCwHSD4zS6w2NPy" : zenLitePrice.id,
156
priceInr: 92900,
157
firstMonth50Coupon: zenLiteCouponFirstMonth50.id,
158
firstMonth100Coupon: zenLiteCouponFirstMonth100.id,
0 commit comments