Add Portfolio Pro $99/mo checkout on pricing page - #3
Merged
Merged
Conversation
- Add portfolio_pro plan tier with Stripe checkout and webhook support - Show third pricing card (Portfolio Pro $99/mo, monthly only) - Wire checkout via plan=portfolio_pro using STRIPE_PRICE_ID_PORTFOLIO_PRO_MONTHLY - Honest copy: same desk access as Pro today; portfolio features on roadmap - Portfolio Pro grants same live/paid desk privileges as Pro - Add tests for portfolio checkout metadata and webhook plan upgrade Co-authored-by: Alexaliao001 <Alexaliao001@users.noreply.github.com>
Alexaliao001
marked this pull request as ready for review
August 22, 2026 04:27
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds Portfolio Pro ($99/mo, monthly only) as a buyable third tier on
/pricing, wired to Stripe livemode productquantradar_portfolio_pro_monthly_v1.What changed
POST /api/billing/checkoutaccepts{ "plan": "portfolio_pro" }and resolves price fromSTRIPE_PRICE_ID_PORTFOLIO_PRO_MONTHLYcheckout.session.completedwithmetadata.product=quantradar_portfolio_prosetsplan=portfolio_proportfolio_progets the same paid desk privileges as Pro (live gate, public surface)Deploy prerequisite (Render env)
Set on
quantradar-shell:Existing Pro vars unchanged (
STRIPE_PRICE_ID_MONTHLY=price_1TDM027uBhbslGrGK7mMVtEp).How to verify in livemode
STRIPE_PRICE_ID_PORTFOLIO_PRO_MONTHLYset to the live price aboveplan=portfolio_proin user store/api/auth/statusreturns"plan": "portfolio_pro"Tests
All 88 unit tests pass, including new portfolio checkout metadata and webhook tests.