Day 12 | Deploy and expose your First App to AWS | Feat. Kunal Verma | Live Project |

Поделиться
HTML-код
  • Опубликовано: 18 янв 2023
  • Support my work
    www.buymeacoffee.com/abhishekprd Hi Everyone, We are at Day-12 and in this class we will learn how to deploy and expose a NodeJS application to external world with Live example and source code from GitHub.
    This session will cover:
    1. How to create a IAM USER and Login
    2. How to create EC2 Instance ? What are some of the good practices ?
    3. How to access the EC2 Instance ?
    4. Deploy an application on to AWS EC2 ?
    5. Expose the application to outside world ?
    6. Access the application deployed on AWS from your laptop.
    Want to try this project at your end ? Fork the GitHub repo
    github.com/verma-kunal/AWS-Se...
    About the Speaker - Kunal Verma
    LinkedIn
    =======
    / verma-kunal
    GitHub
    ======
    github.com/verma-kunal
    Telegram channel
    ===============
    t.me/abhishekveeramalla
    About me:
    -----------------
    LinkedIn: / abhishek-veeramalla-77...
    GitHub: github.com/iam-veeramalla
    Medium: / abhishekveeramalla-av
    RUclips: / @abhishekveeramalla .
    .
    Disclaimer: Unauthorized copying, reproduction, or distribution of this video content, in whole or in part, is strictly prohibited. Any attempt to upload, share, or use this content for commercial or non-commercial purposes without explicit permission from the owner will be subject to legal action. All rights reserved.

Комментарии • 626

  • @katdareshruti
    @katdareshruti 11 месяцев назад +22

    Thanks!

  • @RakeshBitling
    @RakeshBitling Год назад +35

    I think these students are lucky they have RUclips resources, excellent channels and all.
    and at the same time we must appreciate efforts of these students too.
    Thanks Abhishek Sir again.

  • @verma-kunal
    @verma-kunal Год назад +167

    Thanks for having me! This was a lot of fun ✨

  • @abubakarmahir1352
    @abubakarmahir1352 Год назад +5

    This literally is a cheatsheet for anyone who aspires to be a DevOps engineer.
    Excellent content. Thanks for all the hard work that has been put into making this wholesome course
    Thanks to Kunal & Abhishek

  • @priyankakamatham4965
    @priyankakamatham4965 6 месяцев назад +3

    Hey Abhishek, Thank you so much for providing interesting videos where people like me, who is starting their Job career will learn many things from your channel to crack an interview and will definitely land in their dream job. The way you explain from scratch is amazing and understandable, the way you are collaborating with people and making videos is awesome. I am happy that I got to know about your channel at the same time, I regret, that I didn't get to know about your channel till now and wasted lot of time. I was able to follow the video and deployed the application successfully, of course got some errors & issues but, I was able to debug and deployed successfully. Thank you Kunal Verma for explaining everything from scratch.

  • @atulanbrahmo1145
    @atulanbrahmo1145 5 месяцев назад

    Thank you Abhishek and Kunal for this lovely demo. Successfully deployed the project to AWS. This channel is an absolute blessing for people pursuing DevOps!

  • @shafqathussain2282
    @shafqathussain2282 4 месяца назад

    thanks bro Kunal Verma for the knowledge and Abhishek Veeramalla for getting people like Kunal to your Channel.

  • @ranurividyaratna7335
    @ranurividyaratna7335 8 месяцев назад +5

    🎯 Key Takeaways for quick navigation:
    00:14 DevOps *course covers fundamentals, Linux scripting, and Git basics in the first 10 days.*
    00:29 Day *11 focuses on Git commands for DevOps engineers, applicable to software engineers as well.*
    01:12 Demonstrates *writing a calculator function (calculator.sh) and the importance of version control.*
    02:45 Initializes *a local Git repository using "git init" and explains the significance of the .git folder.*
    05:44 Emphasizes *the purpose of the "git add" command for tracking changes and the importance of the .git folder.*
    09:12 Explains *the need for "git commit" to document changes and enable version control.*
    12:23 Introduces *"git push" for pushing changes to a remote repository, highlights the absence of a remote reference in local initialization.*
    16:49 Discusses *the necessity of adding a remote reference using "git remote add" to enable successful "git push."*
    18:44 Explains *the cloning process using "git clone," distinguishing between https and SSH methods for authentication.*
    21:02 Demonstrates *generating an SSH key and adding it to GitHub for secure authentication in the cloning process.- **00:14** DevOps course, Day 11, focusing on Git commands for DevOps engineers.*
    00:29 Covers *fundamental Git commands for day-to-day use by software engineers.*
    02:45 Demonstrates *initializing a local Git repository using `git init`.*
    03:13 Recommends *downloading Git from git-scm.com and shows how to initialize a repository.*
    05:18 Explains *the significance of the `.git` folder for tracking, logging, and security in Git.*
    08:43 Emphasizes *the importance of using `git add` before committing changes to track files.*
    10:08 Highlights *the need for `git commit` to create a commit with a message for versioning and tracking changes.*
    12:23 Introduces *the `git push` command to push changes to a remote repository (GitHub in this example).*
    15:27 Addresses *the common issue of `git push` not working due to the absence of a remote reference and explains how to add a remote using `git remote add`.*
    18:30 Outlines *a simple Git workflow: `git add`, `git commit`, and `git push`.*
    19:53 Differentiates *between cloning using HTTPS and SSH mechanisms, recommending HTTPS for password authentication and SSH for public/private key authentication.*
    21:02 Demonstrates *generating SSH keys using `ssh-keygen` and explains how to add the public key to the GitHub account for authentication.*
    23:09 To *authenticate with GitHub and clone code, provide your SSH key. Use `git clone` to download a specific repository. The video explains the difference between `git clone` and `git fork`.*
    25:42 Forking *creates a copy of a repository, allowing independent development. Cloning downloads a specific repository. Forking is essential for distributed collaboration, creating separate versions of a codebase.*
    26:36 Key *Git concepts covered include creating repositories from CLI, the difference between `git clone` and `git fork`, and understanding the Git lifecycle, beneficial for DevOps Engineers and developers.*
    27:32 Branching *in Git is crucial for isolating development activities. For example, creating a new branch for significant features ensures stability in the main branch until changes are tested and merged.*
    34:23 Git *offers three ways to combine branches: `git merge`, `git rebase`, and `git cherry-pick`. Cherry-pick is straightforward for one or two commits, while `merge` and `rebase` are suitable for more extensive changes.*
    43:19 Git *merge incorporates changes from one branch into another, creating a merge commit. Git rebase integrates changes in a more linear fashion, rewriting commit history. Conflicts may arise, requiring resolution.*
    47:44 In *Git, when using merge, changes are added at the top, disrupting the linear order of commits. This can make it challenging to track changes over time.*
    49:07 Git *rebase keeps changes in a linear order, making it easier to track commit history. It updates changes before the existing commits, providing a more organized and chronological view of the codebase.*
    50:17 The *key difference between git rebase and git merge is in the commit history organization. Rebase offers a linear commit history, while merge disrupts the order. Choose based on the project's need for a clear and linear commit history.*
    Made with HARPA AI

  • @udaybaskar7238
    @udaybaskar7238 7 месяцев назад +1

    Thank you so much Kunal Verma for the knowledge and Abhishek Veeramalla for getting people like Kunal to your Channel.

  • @KumarK-sv7yh
    @KumarK-sv7yh 8 месяцев назад +3

    Completed Day:12 Video and Practice also done.
    Instead of Stripe account creation(it is asking Bank A/C details)
    Through some reference I have deployed tomcat server and run with port 8080.
    Everything went successfull.
    *Challenges:*
    I have found a Maven version issue,
    So installed the java-1.8* and issue resolved.

    Thanks Veeramalla garu
    GK from NJ

  • @govindraomettu9857
    @govindraomettu9857 5 месяцев назад +1

    Thanks Abhishek and Kunal Verma for Realtime project

  • @AbhishekVeeramalla
    @AbhishekVeeramalla  Год назад +9

    If you want create the api keys 🔑 that kunal used in the video. Please refer
    docs.google.com/document/d/1n0DH0Snz_s3BCfUUXkGEo_Pmczuefy6MxnlJmAJf73s/edit?usp=sharing

  • @chinnubhannuvlogs
    @chinnubhannuvlogs 5 месяцев назад

    Great tutorial, Kunal! Your step-by-step explanation on setting up IAM users and permissions on AWS is super clear. It's essential for beginners to grasp these concepts when venturing into cloud deployments. Looking forward to more insightful content!

  • @YoutubePremuim-kd3rz
    @YoutubePremuim-kd3rz 6 дней назад

    Thank you Abhishek and Kunal for making videos and sharing your knowledge.

  • @amansharma-xh6og
    @amansharma-xh6og 3 месяца назад

    Thanks both of you. For your time you pitched in.

  • @vijayaaiella9287
    @vijayaaiella9287 5 месяцев назад +1

    Execellant undestanding between them....thx for great vedio...will help many

  • @chinnanambi
    @chinnanambi 10 дней назад

    kunal did great job! where beginners hesitated while deployment process ..he shows practically and i'm impressed last inbound rules

  • @roshansiwakoti1875
    @roshansiwakoti1875 6 месяцев назад +1

    thanks kunal and abishek . i was able to follow and deploy the same without any errors.it was so precise and clear

  • @kupendrapola3798
    @kupendrapola3798 Год назад

    Thank you!! it was short and sweet. Abhishek, we could sense your matured way of progressing the session.

  • @olayemiolasumbo3071
    @olayemiolasumbo3071 6 месяцев назад

    Thank you both for this awesome video. It was fun following along. Abhishek, your channel is the best I have ever encountered. Thank you so much for all you do.

  • @JaskaranSingh-io8uj
    @JaskaranSingh-io8uj 3 месяца назад +1

    This is amazing video , a great start to learn deploy your application onAWS

  • @krishanthabsomarathna1098
    @krishanthabsomarathna1098 7 месяцев назад

    Yeee Its working This is my very first deployment on AWS thank you so much Both of you ❤️

  • @akshaysalunkhe3132
    @akshaysalunkhe3132 Месяц назад +1

    That's so fabb Abhishek and Kunal . I appreciate you guys so much. I started this devops journey having no knowledge on AWS , Git or linux. I wasn't aware of the single thing or commands and i just went through this 12 days zero to hero Devops course and I have learnt so much and I did this deployment of code on AWS also.I much looking forward to lean more and more from this channel. They way Abhishek explains is on so point and detail that even a beginner can understand. I remember every and each command of linux taught by him in the previous video and I could immediately grasp what command to use in this project as Kunal was teaching.you dont know guys but you have helped me in many ways just to start of my journey that I was so scared of , 3 yrs in IT industry and manual testing i am so underconfident this is helping me learn and grow !!!

    • @AbhishekVeeramalla
      @AbhishekVeeramalla  Месяц назад

      Thats great to know Akshay. All the best for you to complete the playlist ❤️

  • @subhammahanta5042
    @subhammahanta5042 7 дней назад +1

    It was like a movie for me great . Thank you Abhishek and Kunal

  • @ramsep17
    @ramsep17 14 дней назад +1

    Amazing video Thanks Abhishek and Kunal. Followed step by step. worked like charm. and they way you guys were doing it interactively was really informative. Thanks a tonn.

  • @kavindugunasekara448
    @kavindugunasekara448 2 месяца назад +1

    I did this and Successfully deployed the project to AWS . Thank you for your great Tutorial.

  • @jamwithsaksham
    @jamwithsaksham Год назад +10

    Crisp and Clear ❤️
    This is what is called content 👍

  • @advaitap1789
    @advaitap1789 7 месяцев назад

    Thank you Abhishek and Kunal for this session. It is very helpful.

  • @RanaGaming02
    @RanaGaming02 4 месяца назад

    Loved it How Kunal shared all Steps with the concepts

  • @odesinaayobami9648
    @odesinaayobami9648 3 месяца назад

    Thanks so much Abhishek and kunal.. You have both blessed us

  • @arifsaleem-7377
    @arifsaleem-7377 27 дней назад

    This is my very first deployment on AWS thank you so much Both of you

  • @thetechguy_01
    @thetechguy_01 3 месяца назад +1

    Amazing session with kunal we want more like this how fresher people approach their knowledge into live world please make more video like this.

  • @rameshgedela1559
    @rameshgedela1559 10 месяцев назад +1

    Compared to any other channels
    You are the Best ❤

  • @manupriyar8169
    @manupriyar8169 6 месяцев назад

    Thanks Abhi and Kunal for this demo.. really appreciable.. thank you so much😊

  • @AshishGupta-oj3qe
    @AshishGupta-oj3qe 21 день назад

    Thank you Abhishek & Kunal for wonderful product. 🎉

  • @Youth23132
    @Youth23132 6 месяцев назад +4

    I literally shocked at the end , I did it. Thanks a ton Abhishek bro....

  • @user-qo9ki2tt4l
    @user-qo9ki2tt4l 8 месяцев назад +2

    Thank you very much Kunal and specially Abhishek....no words to explain how good you people are.....Thank you very much for your great help buddy's!!!!!

  • @reneshmlal2809
    @reneshmlal2809 6 месяцев назад +1

    This is my first project in AWS.
    Thank you so much, Abhishek and Kunal for this video.
    There were many things in the video but Kunal made it simple for everyone to understand. Git -> VsCode -> Stripe -> Aws -> IAM -> Ubuntu -> Aws inbound rules.
    ❤❤❤

  • @eagles-wings
    @eagles-wings 7 месяцев назад +1

    Thank you Kunal for the tutorial and of course Abhishek for this great channel where people can learn valuable skills for free.

  • @anjalibarik5972
    @anjalibarik5972 23 дня назад

    Thanks a lot Abhishek and kunal for this amazing and very essentials demo of this live project. I have learned a lot from you guys today. Abhishek you deserves a tons of success buddy. you 're the best mentor seriously thank you very much.

  • @shashankchoubey9253
    @shashankchoubey9253 Год назад +3

    I really appreciate the effort you put in to educate the DevOps enthusiasts and that too on free basis, keep going keep making the content and thank you very much :)

  • @saiharsha4619
    @saiharsha4619 Год назад +5

    Really appreciate your efforts to bring awesome people and show practical demos Abhishek..!!🔥😍 .Kudos to Kurnal for the great session. 😉

  • @user-on9rc4qx5n
    @user-on9rc4qx5n 7 месяцев назад

    I deployed the application in AWS image instead of Ubuntu and was able to access it on my 1st attempt. Thanks, Kunal and Abhishek!!!!

    • @rajeshmangena9718
      @rajeshmangena9718 4 месяца назад +1

      Bro, how can we get .env file data (secret info) ?

  • @priyamsaha8018
    @priyamsaha8018 Год назад +1

    I am very very thankful to you Abhishek and Kunal for this awesome session. I gained a lot of knowledge. Thank you.

  • @swally5786
    @swally5786 5 месяцев назад

    Great content, specially for a newbie like myself.

  • @albinwilson7436
    @albinwilson7436 Год назад +1

    Thank you both for all this super-quality content!

  • @randomavghuman
    @randomavghuman 4 месяца назад +1

    I already had experience with node, and after following the aws VPC concepts playlist, this seemed very easy, was a good revision.

  • @chetanchaudhari1408
    @chetanchaudhari1408 12 дней назад

    It is actually awesome. Thanks a million kunal and abhishek.

  • @anjaneyulus5975
    @anjaneyulus5975 Год назад +2

    Thank you so much both of you doing great... This is video very much helpfull to us to keep on leaning continue is part of this course..👍👍

  • @nitishmalang4844
    @nitishmalang4844 Год назад +5

    you both are inspiration following you both consistently
    great work 👍

  • @harshnegi200
    @harshnegi200 3 месяца назад

    Thanks Abhisekh and Kunal. I completed it , it was amazing and worked fine for me.

    • @mandabathram2491
      @mandabathram2491 3 месяца назад

      hey brother can i know where can i get my publishable key and service key in that .env file

  • @mehtabafsar1
    @mehtabafsar1 25 дней назад +1

    wow!! truly enjoyed it

  • @PrinceRaj-ol9hb
    @PrinceRaj-ol9hb 5 месяцев назад

    awesome bro, thankyou so much, it is really helpful

  • @tapasghosh9802
    @tapasghosh9802 3 месяца назад +1

    Great tutorial! Clear and concise steps. It was exciting trying it out myself. Keep up the good work!!! kunal and abhishek

  • @jayanandini5418
    @jayanandini5418 10 месяцев назад +1

    Yaaayyyy... Finally deployed an application into an ec2 instance.. Thank you abhishek and kunal for the awesome tutorial😍😍😍

  • @rutheirene7548
    @rutheirene7548 Год назад +1

    Abhishek, i want to specially thank you for the awesome job you are doing. Great Job! Kunal, great presentation.

  • @NobixLee
    @NobixLee Год назад

    Very good guys, awesome staff!!!

  • @emmetgingles8503
    @emmetgingles8503 7 месяцев назад +1

    Thank you Kunal and Abhishek. You made everything clear and easy to understand.

  • @quasar_0x
    @quasar_0x 3 месяца назад

    Great Work guys.

  • @durgaprasadvatti872
    @durgaprasadvatti872 Год назад +5

    This is what we called as Crisp and Clear Content ❤ Havent get bored in this one hour, need more videos like this 🎉Thanks to Kunal & Our one and only Abhishek ❤

  • @PankajSingh-nx6ky
    @PankajSingh-nx6ky 2 месяца назад

    Successfully deployed the application
    Thankyou Abhishek:)

  • @beulahsolomon6302
    @beulahsolomon6302 Год назад +1

    Very awesome learning from Kunal and Abhishek. Thank you both of you.

  • @soumyadipchatterjee2267
    @soumyadipchatterjee2267 2 месяца назад +1

    Each day from everyone we can learn small thing .Kudos Kunal & Abhishek bhai

  • @ankitaB11
    @ankitaB11 3 месяца назад

    yahooo! I did it! Thanks Kunal & Abhishek !!!

  • @nilavasen8631
    @nilavasen8631 Год назад +5

    Dear Abhishek, This is really an awesome video .. and also thanks a lot to Kunal bhai for the beautiful presentation.
    I have one request for you. Can you please develop one complete video on e2e Application deployment into K8S cluster from scratch like "Create Jenkins CICD pipeline --> pull code base from GIT --> Gradle build --> Create Docker Image --> Push the image into Docker Hub --> Pull the image from Docker Hub --> Create K8s cluster with worker nodes and deploy the application into K8S cluster.. "
    I am sorry for making this long list , but I think this will be really helpful to many of us !! Thank you 🙂

  • @sangativamsikrishna1691
    @sangativamsikrishna1691 Год назад +1

    Thanks Kunal for your valuable information and Good presentation.
    Abhishek waiting for more live sessions like this for better understanding.
    Thank you

  • @ZohoRobo
    @ZohoRobo 6 месяцев назад

    Amazing Bro. Just able to complete my first project

  • @Rorschach_ind
    @Rorschach_ind Год назад

    Thank You Sir & Thank You Kunal!
    This tutorial was awsome!
    I've deployed a simple form using apache2 and written a very simple shell script to pull changes from github, though i faced some issues, i solved them.

  • @ghostxmetal
    @ghostxmetal 4 месяца назад

    Thank you!! this was amazing, will try to do the same and deploy my portfolio on an ec2. will update once done, lets see how that goes :D

  • @YaminiAnala
    @YaminiAnala 7 месяцев назад +1

    Thanks kunal and abhishek sir for providing the valuable and incredible Lectures on Devops

  • @nishithanishi7926
    @nishithanishi7926 5 месяцев назад

    i have executed this project and i have done it thanks a lot for both kunal and abhishek for this real time project from scratch.

    • @rakshitabelwal6157
      @rakshitabelwal6157 5 месяцев назад

      i'm getting an error while running "npm run start" what could be the possible reason
      if you know please tell??

    • @abhilashhasankar5768
      @abhilashhasankar5768 3 месяца назад

      ​@@rakshitabelwal6157 same here

  • @Balaji_Devops_Engineer_28
    @Balaji_Devops_Engineer_28 6 дней назад

    Awesome stuff. Great one. ❤

  • @damithbandara3134
    @damithbandara3134 Год назад +2

    Wow ! This is very helpful. Learned a lot from this video. Thank you so much @Kunal Verma and @Abhishek Veeramalla ✨✨

  • @minizone2304
    @minizone2304 Год назад +6

    How many times we should be thank full to you Abhishek till this course comes to an end.
    Thanks a Lot , it was a excellent project :)

  • @pataastv207
    @pataastv207 Год назад +1

    Thank you both for this awesome content! wonderful session 😊

  • @baroonjha3160
    @baroonjha3160 11 месяцев назад +2

    It was amazing , deployed a react app on aws ec2 after this video ,loved it .I think his channel will get me job after completing the devOps playlist .

    • @AbhishekVeeramalla
      @AbhishekVeeramalla  11 месяцев назад +1

      Most welcome !!

    • @Ajay-kc3bp
      @Ajay-kc3bp 10 месяцев назад

      Hey bro did you land a job?

    • @baroonjha3160
      @baroonjha3160 10 месяцев назад +1

      @@Ajay-kc3bp haven't completed the playlist yet because of my university exam is going on .To get a job ,have to make some good projects first

    • @Ajay-kc3bp
      @Ajay-kc3bp 10 месяцев назад

      @@baroonjha3160 bro any resources from where we can get an idea for projects ?

  • @guidanceofislam3952
    @guidanceofislam3952 18 дней назад

    thanks a lot abhishek you did very well

  • @Y-RavindraReddy
    @Y-RavindraReddy 9 месяцев назад +1

    Thank you Abhi and Kunal for a very good video on how to run a test app in aws infra.

  • @sar-km1lk
    @sar-km1lk 13 дней назад

    Wow Awesome I really enjoyed.

  • @rajagollamandala3487
    @rajagollamandala3487 6 месяцев назад +4

    got pride smile when its finally opened 😀

  • @vinaykumardiddupudi6998
    @vinaykumardiddupudi6998 2 месяца назад

    awesome videos, thanks kunal👏

  • @itzsatishchand
    @itzsatishchand Год назад

    in your videos you are covering a lot of topics which institutions are not covering ..... in your videos are covered with interview point of view questions ... thats pretty good to one who wanna prepare for job and who want to crack interview easily ..
    as i said institutions are not covering number of points which are deal in your class . thanks for giving such kind of valuable stuff in internet with free of cost ..

  • @ssj4822
    @ssj4822 Месяц назад

    Very nice demo with node js .

  • @manikandang6986
    @manikandang6986 7 месяцев назад +1

    Thanks for your video , i was looking these steps so many days and finally i understand how to deploy application in remote server , i am not development background i did not understand if i read any doc and now i cleared and will demo as well :)

  • @maryjohnson9676
    @maryjohnson9676 Год назад +1

    This was so helpful and magical. Thank you both

  • @nikhil4897
    @nikhil4897 4 месяца назад +2

    Hey Abhishek, I was so interested in this video and was enjoying that i even forgot to sleep haha its almost 4 ..Thanks man your a blessing 🧿keep growing and keep teaching ur students including me..Kunal Thanks buddy ur awesome.

  • @bjbj7695
    @bjbj7695 Год назад

    Thank you so much, Kunal Verma. This was amazing.

  • @pradeepkumarvenkata1793
    @pradeepkumarvenkata1793 8 месяцев назад +1

    Superb and followed video from scratch and deployed.

  • @MohdAbuzer17
    @MohdAbuzer17 2 месяца назад

    Good explaination !

  • @harshagorantla3250
    @harshagorantla3250 Год назад +2

    I appreciate you for the effort and kindness towards us

  • @hareeshanand4209
    @hareeshanand4209 7 месяцев назад +1

    Thank you Kunal and Abhishek , the application is successfully running 😊.Amazing 🤩

  • @swa19992
    @swa19992 9 месяцев назад +1

    Absolutely Great project sir........thank you Kunal & Abhishek sir👏👏

  • @parthibfab4195
    @parthibfab4195 Месяц назад

    You both actually rocked❤❤❤

  • @faizanvanekar7882
    @faizanvanekar7882 11 месяцев назад

    Very exciting !!

  • @Imr4n._7.
    @Imr4n._7. 5 месяцев назад

    Good explanation sir.

  • @olayinkafalokun9245
    @olayinkafalokun9245 2 дня назад +1

    I love this

  • @ashutoshkumar7275
    @ashutoshkumar7275 11 месяцев назад +1

    Nice video, I implemented the project myself, only modification we can do here is instead of Creating a aws IAM user with admin access, we can create the user with EC2FullAcces. It will work perfectly fine. Another thing is that we can use api keys as blank. It is not required.

  • @PrincePazol
    @PrincePazol 4 месяца назад

    Thanks Abhishek 🌞

  • @itzsatishchand
    @itzsatishchand Год назад

    #abhishek excellent video by your end .. i am learning devops from class 1 .. taking the same course by some other institute as well .. i am folowing both classes at same time ,.. today i just learned Maven installation in my class at the same end in class 12 you shown me how to deploy a application in server .. thanks a lot for the video .. with this video i have learnt practical knowledge of how can i do myself ..
    once again thanks abhishek & thanks to kunal verma

  • @Aman-fz1ew
    @Aman-fz1ew 3 месяца назад

    nice demonstration.