data-peek/apps/web
Rohith Gilla 968cd9521d fix(web): update webhook verification to use Standard Webhooks spec
- Use Dodo Payments SDK's unwrap() method for signature verification
- Extract proper Standard Webhooks headers (webhook-id, webhook-signature, webhook-timestamp)
- Add idempotency handling using webhook-id to prevent duplicate processing
- Remove custom HMAC verification in favor of SDK-based approach

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-03 18:36:28 +05:30
..
drizzle feat: web updates with pro license, customer portal, and safety improvements (#24) 2025-12-03 16:44:38 +05:30
public feat: add web app 2025-11-28 20:29:49 +05:30
src fix(web): update webhook verification to use Standard Webhooks spec 2025-12-03 18:36:28 +05:30
.gitignore feat: add web app 2025-11-28 20:29:49 +05:30
drizzle.config.ts feat: add web app 2025-11-28 20:29:49 +05:30
eslint.config.mjs feat: add web app 2025-11-28 20:29:49 +05:30
next.config.ts feat: web updates with pro license, customer portal, and safety improvements (#24) 2025-12-03 16:44:38 +05:30
package.json chore: release v0.4.0 2025-12-03 16:45:07 +05:30
postcss.config.mjs feat: add web app 2025-11-28 20:29:49 +05:30
README.md chore: prepare for open source release 2025-11-29 10:57:24 +05:30
tsconfig.json feat: add web app 2025-11-28 20:29:49 +05:30

data-peek Web

Marketing website and licensing portal for data-peek.

Tech Stack

  • Next.js 16 (App Router)
  • Tailwind CSS 4
  • Clerk (Authentication)
  • Drizzle ORM + PostgreSQL
  • DodoPayments (Payments)
  • Resend (Emails)

Development

# From the root directory
pnpm dev:web

# Or from this directory
pnpm dev

Open http://localhost:3000 to view the site.

Environment Variables

Copy .env.example to .env.local and fill in the values:

cp .env.example .env.local

Required variables:

  • DATABASE_URL - PostgreSQL connection string
  • CLERK_SECRET_KEY - Clerk authentication
  • NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY - Clerk public key
  • DODO_API_KEY - DodoPayments API key
  • DODO_WEBHOOK_SECRET - DodoPayments webhook secret
  • RESEND_API_KEY - Resend email API key

Deployment

The web app is designed to be deployed on Vercel.