const app = new App({general_store_name: "my-storecraft-app",auth_admins_emails: ["john@doe.com"],}).withPlatform(new NodePlatform()).withDatabase(new SQLite()).withStorage(new NodeLocalStorage()).withMailer(new SendGrid()).on('orders/checkout/complete',async (event) => {const order: orderData = event.payload;// send email here})await app.init();await migrateToLatest(app.db, false);http.createServer(app.handler).listen();
const app = new App(config).withPlatform(new NodePlatform()).withDatabase(new MongoDB()).withStorage(new GoogleStorage()).withPaymentGateways({'stripe': new Stripe({publishable_key: '****',secret_key: '****',webhook_endpoint_secret: '****'}),})