- Introduced a comprehensive markdown document outlining implementation rules for Convex functions, including syntax, registration, HTTP endpoints, and TypeScript usage. - Created a new configuration file for the Convex app, integrating the Resend service. - Added a new HTTP route for handling Shippo webhooks to ensure proper response handling. - Implemented integration tests for order timeline events, covering various scenarios including order fulfillment and status changes. - Enhanced existing functions with type safety improvements and additional validation logic. This commit establishes clear guidelines for backend development and improves the overall structure and reliability of the Convex application.
8 lines
165 B
TypeScript
8 lines
165 B
TypeScript
import { defineApp } from "convex/server";
|
|
import resend from "@convex-dev/resend/convex.config.js";
|
|
|
|
const app = defineApp();
|
|
app.use(resend);
|
|
|
|
export default app;
|