Full Stack Web Development: Angular 16, .NET Core, Azure, and Docker | #webdevelopment #docker

preview_player
Показать описание
In this ultimate video, we bring together all the parts of our journey to becoming a full-stack web developer. We've covered a multitude of technologies and practices, including Angular 16, .NET Core, Azure services, and Docker.

Starting with Angular 16, you've learned essential concepts like reactive forms, UI customization, and routing. In the .NET Core realm, you've explored the development of a robust web API, database design, and how to integrate Azure services. We've walked you through deploying your applications to Azure Web Apps and even containerizing your apps using Docker for seamless deployment.

This holistic guide is your key to becoming a well-rounded full-stack web developer. We've covered every aspect from front-end to back-end and the entire deployment process. Whether you're new to web development or expanding your skills, this video series will set you on the path to mastery.

Repo:

Please post your questions in the comment section and I will be happy to answer your questions.

Happy coding!
Рекомендации по теме
Комментарии
Автор

One of the best tutorials ever! So many topics covered

tedbas
Автор

Good one for fresher full stack developer.

swenyable
Автор

why cant it be done with code first rather than building the tables in SQL server first.. code first is very easy and flexible i believe

nonpartisanrealist
Автор

Excellent👌👍👍, I learned a lot, Thank you

rajendrasyam
Автор

Good one Bro. Hope to see more microservice project

ajit
Автор

Is there any video explaining from start about angular as u mentioned

vijayalakshmireddy
Автор

One of the best tutorials ever! So many topics covered. Hope to see more microservice projects. Excellent, I learned a lot, Thank you @learncodingsmart

kvkarthik
Автор

Hi Sir,
Sir in your video you have 2 sections
1.Automated CI/CD using azure deployment centre
2.Ci/CD setup using Azure dev ops

i am confuse here because in the 1st point we have already done setup for CI/CD then why doing it in the 2nd section again? So does this mean we can setup ci/cd using both the ways? whats the difference?

Also on youtube almost all videos are using Ci/CD setup using Azure dev ops and not the 1st one.

gasstove
Автор

at 53:15 the DB tables were automatically created as classes. So did we initially push the restaurant tables from local SQL to Azure SQL in the beginning of the video?

jayasri
Автор

Hello does this cost any money for azure or any other functionality in this development process because yet i haven't watch your full video. So just making sure before start it. And Thank you for this video..

mourningmafia
Автор

Can i create this application without azure knowledge..?
i dont want to use azure right now ..

PradeepRana-zknp
Автор

Hi Sir,
I am getting below exception after deploying timer function on azure . do we need to create any storage account .. cant see any such thing in video .. please reply i am stuck
Exception while executing function: Functions.TimeSlotFunction Exception binding parameter 'myTimer' Could not create BlobContainerClient for ScheduleMonitor

gasstove
Автор

Hi, I'm not getting why do we have to install EF globally?

mathkesolution
Автор

Why can we not connect to Azure DB from a personal DBMS sofrware like MySql? So we cannot modify azure sql DB from local computer's DB?

jayasri
Автор

I downloaded the function project but when i try to open .sln file in VS 2022 run as admin then getting error: look like in output window - some file name limit issue? is i need to change any file name or any other?

d.choudhary
Автор

What is the UI methodology used here? Is it in blazor!

debankurbhattacharjee
Автор

Why you didn't implement frontend from scratch

Anilkumar-xgdh
Автор

Hi i think database script is not updated on github, 19:56
in the video TimeSlots is connected with reservation and resturantbranches but in the script on the github Timeslots is connected with Reservation and diningTables
can you please update database script on github

ayushsingh
Автор

I have question public Task<List<RestaurantModel>> GetAllRestaurantsAsync()
{
var restaurants = _dBContext.Restaurant
.Select(x => new RestaurantModel()
{
Id = x.Id,
Name = x.Name,
Address = x.Address,
Email = x.Email,
Phone = x.Phone,
ImageUrl = x.ImageUrl,
}).ToListAsync();

return restaurants;
} why here not use async and await keywork in Repository and why do you say like it will execute in memory not at database level ?

xyz-eljy