MCPcopy Create free account
hub / github.com/CedarCopilot/cedar-OS / getMastraProjectNextSteps

Function getMastraProjectNextSteps

packages/cli/src/templates.ts:33–52  ·  view source on GitHub ↗
(
	projectName: string,
	manager: string
)

Source from the content-addressed store, hash-verified

31};
32
33const getMastraProjectNextSteps = (
34 projectName: string,
35 manager: string
36): string[] => {
37 return [
38 `Navigate to your project: ${pc.cyan(`cd ${projectName}`)}`,
39 `Install dependencies: ${pc.cyan(
40 `${manager} install && cd src/backend && ${manager} install && cd ../..`
41 )}`,
42 `Create .env file: ${pc.cyan(
43 'echo "OPENAI_API_KEY=your-api-key-here" > .env'
44 )}`,
45 `Start development: ${pc.cyan(
46 'npm run dev'
47 )} (starts both Next.js and Mastra backend)`,
48 pc.green(
49 '\n🎉 Cedar chat should magically work! Try chatting with your AI assistant.'
50 ),
51 ];
52};
53
54const getMastraReferenceNextSteps = (
55 projectName: string,

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected