Add monetization app with RevenueCat webhooks alongside Stripe.
CI / test (pull_request) Successful in 11s
Unit Tests / test (pull_request) Successful in 11s

Rename finance → monetization (keep finance_* tables via app label), add
RevenueCat webhook + ledger upserts so store IAP syncs subscriptions and
billing history like Stripe. Companion to chat_web_app#100 / #68.
This commit is contained in:
2026-08-03 14:57:29 -05:00
parent bf3fffa343
commit 07c03ce65d
44 changed files with 965 additions and 102 deletions
+8
View File
@@ -0,0 +1,8 @@
"""Finance app signals."""
def seed_plans_on_migrate(sender, **kwargs):
"""Ensure the subscription catalog exists after migrate."""
from monetization.services.plans import seed_subscription_plans
seed_subscription_plans(update_existing=False)