Superb! Exactly what I was looking for - transfer all lambda functions' config to a separate yaml file. Great work! Thanks! 🙌🤩
@khandoor72284 жыл бұрын
Nice work Sam, Happy New Year, Look forward to tracking your content this year.
@CompleteCoding4 жыл бұрын
Thanks and happy new year to you too!
@alex4tm12 жыл бұрын
Hello, great video and love the pace of the explanations, i looked in your repository for this project and on the advanced lambda functions branch, as it seems you are working on this video, it does not have the end result code.Was just wondering if thats intended or you forgot to update it :D thanks for the videos !
@madara_u_chiha3 жыл бұрын
You deserve 1 million subs Sam!
@CompleteCoding3 жыл бұрын
Thanks, maybe one day we'll get there
@shazkhan5582 жыл бұрын
Awesome man! you are the best
@CompleteCoding2 жыл бұрын
Wow, thanks!
@dharmeshkanzariya17063 жыл бұрын
Awesome video, keep up the amazing work! Very help full video
@CompleteCoding3 жыл бұрын
Thanks, will do!
@ComputerScienceSimplified4 жыл бұрын
Awesome video, keep up the amazing work! :)
@CompleteCoding4 жыл бұрын
Thank you! Will do!
@sakthivel-kl1ws3 жыл бұрын
Hi , I have one question. If 5 functions and while deploying it will create 5 lambda functions and each function 5 files . It duplicates the files . Pls advice how cloud I avoid.
@CompleteCoding2 жыл бұрын
Are you saying that each lambda gets 25 files uploaded into it?
@sakthivel-kl1ws2 жыл бұрын
@@CompleteCoding yea
@CompleteCoding2 жыл бұрын
@@sakthivel-kl1ws There are multiple ways to do this. One is to add this to your serverless config, another is using serverless webpack package: individually: true
@sakthivel-kl1ws2 жыл бұрын
@@CompleteCoding thank you. Let me try this .
@vacanttime4 жыл бұрын
Hai @complet coding, I have multiple stacks(serverless.yml file) and I want to run those files one after another using the main serverless file. those files should deploy in synchronously like in order. Can you help me with how I can write that? If possible could you make a video for that?
@CompleteCoding4 жыл бұрын
You could write a bash script that runs each of them in turn. If you have multiple serverless projects in folders next to each other, then it might look something like this. ``` runAllServerless.sh cd serverlessProjectOne sls deploy cd ../serverlessProjectTwo sls deploy cd ../serverlessProjectThree sls deploy ``` You then just run `bash ./runAllServerless.sh` This is just written from memory so might need some tweaking to get working properly. If they're different yml files in one folder then it would just be ``` sls deploy --config project1.yml sls deploy --config project2.yml sls deploy --config project3.yml ```
@vacanttime3 жыл бұрын
@@CompleteCoding This is so helpful Thank you!
@NITINAGAM3 жыл бұрын
It's really cool !!
@CompleteCoding3 жыл бұрын
Thanks. glad you liked it
@naveensaini16184 жыл бұрын
thanks for the video and please see the mail I sent to you or should I sent it again
@CompleteCoding4 жыл бұрын
I've just sent you a reply. It's a good idea and I'll be trying it out soon.
@RahulAhire4 жыл бұрын
What a coincidence I was thinking passively for many day how could the structure of serverless be simplified and got this video
@CompleteCoding4 жыл бұрын
Glad this could help. Having a single ginormous yml file becomes really annoying to work with