Skip to content
/ n3-starter-kit Public template

Full-Stack | Angular + Nest | powered by NX workspace

Notifications You must be signed in to change notification settings

khattaksd/n3-starter-kit

Repository files navigation

N3StarterKit

Nx Angular NestJS Prisma PNPM

Start the app

To start the development server run nx run-many -t serve. Open your browser and navigate to http://localhost:4200/. Happy coding!

Running tasks

To execute tasks with Nx use the following syntax:

nx <target> <project> <...options>

You can also run multiple targets:

nx run-many -t <target1> <target2>

..or add -p to filter specific projects

nx run-many -t <target1> <target2> -p <proj1> <proj2>

Targets can be defined in the package.json or projects.json. Learn more in the docs.

Ready to deploy?

Just run nx run-many build to build the application. The build artifacts will be stored in the dist/ directory, ready to be deployed.