asssfdsfdf dfsdsdf d // server.js
require('dotenv').config();
const express = require('express');
const Stripe = require('stripe');
const bodyParser = require('body-parser');
const { STRIPE_SECRET_KEY, WEBHOOK_SECRET, BASE_URL, PORT = 3000 } = process.env;
if (!STRIPE_SECRET_KEY || !BASE_URL) {
console.error('Missing required env vars: STRIPE_SECRET_KEY and BASE_URL');
process.exit(1);
}
const stripe = Stripe(STRIPE_SECRET_KEY);
const app = express();
// JSON parser for normal routes
app.
or
Startup Events
Live Chat
The AI-powered incubator for founders building real businesses.
Entrepreneurship is hard. We make it easy.
© 2026 GoVenturz, LLC