How do I run the full stack locally for development? #2
Answered
by
Ali-Haggag7
3bdo-Yahya
asked this question in
Q&A
|
I cloned the repo and see it's a monorepo. What's the best command to start the Next.js frontend, NestJS backend, and the game engine at the same time? |
Answered by
Ali-Haggag7
Jun 10, 2026
Replies: 1 comment
|
Since this is a pnpm monorepo, you don't need to start them individually. Just make sure your PostgreSQL and Redis instances are running, then run pnpm run dev:all from the root directory. This will boot up the entire stack synchronously. |
0 replies
Answer selected by
3bdo-Yahya
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Since this is a pnpm monorepo, you don't need to start them individually. Just make sure your PostgreSQL and Redis instances are running, then run pnpm run dev:all from the root directory. This will boot up the entire stack synchronously.