create-mastra
Version:
Create Mastra apps with one command
26 lines (25 loc) • 584 B
text/typescript
export const config = {
name: 'PROJECT_NAME',
integrations: [],
db: {
provider: 'postgres',
uri: process.env.DB_URL!,
},
runner: {
provider: 'inngest',
uri: process.env.INNGEST_URL!,
signingKey: process.env.INNGEST_SIGNING_KEY!,
eventKey: process.env.INNGEST_EVENT_KEY!,
},
workflows: {
blueprintDirPath: '/mastra/blueprints',
systemEvents: {},
systemApis: [],
},
agents: {
agentDirPath: '/mastra/agents',
vectorProvider: [],
},
systemHostURL: process.env.APP_URL!,
routeRegistrationPath: '/api/mastra',
} as const;