Complete the code to create a new NestJS project using the CLI.
nest [1] my-nest-appThe nest new command initializes a new NestJS project with the given name.
Complete the command to add a new module named 'users' to your NestJS project.
nest [1] module usersThe nest generate command is used to create new components like modules, controllers, or services.
Fix the error in the command to generate a controller named 'auth'.
nest generate [1] authTo generate a controller, you must specify controller after generate.
Fill both blanks to generate a service named 'payment' inside the 'orders' module.
nest generate [1] payment --module [2]
You generate a service and specify the orders module to place it inside.
Fill all three blanks to generate a controller named 'profile' with a spec file inside the 'users' module.
nest generate [1] profile --module [2] --[3]
You generate a controller named 'profile' inside the users module and include a spec file for testing.