Let's use a single sandbox environment via 1password ENV vars

This commit is contained in:
Jorge Manrubia
2025-12-12 10:34:57 +01:00
parent 5be4dca80e
commit a25bd9adfd
+1 -1
View File
@@ -1,7 +1,7 @@
class Plan
PLANS = {
free_v1: { name: "Free", price: 0, card_limit: 1000, storage_limit: 1.gigabytes },
monthly_v1: { name: "Unlimitted", price: 20, card_limit: Float::INFINITY, storage_limit: 5.gigabytes, stripe_price_id: ENV.fetch("STRIPE_MONTHLY_V1_PRICE_ID", "price_1SaHykRwChFE4it8PePOdDpS") }
monthly_v1: { name: "Unlimitted", price: 20, card_limit: Float::INFINITY, storage_limit: 5.gigabytes, stripe_price_id: ENV.fetch("STRIPE_MONTHLY_V1_PRICE_ID") }
}
attr_reader :key, :name, :price, :card_limit, :storage_limit, :stripe_price_id