What files are required inside .zip file when we deploy a NestJS app with Serverless Framework

Viewed 152

i have a NestJS project integrated with Serverless Framework, when i run

$ serverless deploy 

I realize that the .zip file inside /.sererless directory contains all the protect, it's necessary to have all the project inside the .zip file or can i remove the /src, /test ... directories?

I can include or exclude files like the documentation said but what files are required when we deploy a NestJS app with Serverless Framework ?

1 Answers
Related