How To Deploy Angular 14 .Net 6 Web App To Azure FULL TUTORIAL!

How To Deploy Angular 14 .Net 6 Web App To Azure FULL TUTORIAL!

Israel Quiroz

2 года назад

15,689 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@leafmagi2796
@leafmagi2796 - 12.07.2022 18:53

thank you bro! i spend half day to deploy my web app and sql to azure. And i am going to deploy another one, much more difficult one. but that one totally match ur topic, SQL + ANGULAR + .NET. just love you >3 >3>3>3

Ответить
@pupunjena1862
@pupunjena1862 - 13.07.2022 04:07

sweet guy and a great programmer

Ответить
@julianlumetsberger4151
@julianlumetsberger4151 - 14.07.2022 08:47

Check your Instagram DM🙌🏽

Ответить
@julianlumetsberger4151
@julianlumetsberger4151 - 14.07.2022 15:16

I have some questions, would be nice if you check your instagram DMs because i am looking for some help - THANK YOU! And another wish from me: Could you please make a tutorial on authentication when youre creating an angular project? How you should architect it and so on...! (Email/password combo and third party authentication would be nice, thank you! :D)

Ответить
@manivannanr7889
@manivannanr7889 - 06.09.2022 19:12

This is a good short video of deploying Angular Dotnet app to Azure

Ответить
@dboulos7
@dboulos7 - 10.09.2022 17:23

Thanks Israel, that was extremely helpful!

Ответить
@jonas19blau
@jonas19blau - 06.11.2022 04:02

Thanks, Israel!
How can use/config Redis in Azure? I have used Redis as a cache in my project.

Ответить
@easypeasy2744
@easypeasy2744 - 07.11.2022 20:43

BEST TUTORIAL EVER I SWEAR <3
thank you so much man... been struggling for a week with docker and this really helped me successfully deploy the application!

Ответить
@kannathasant103
@kannathasant103 - 26.11.2022 20:47

Awesome content, very useful for me.

Ответить
@ShatteredEyeStudios
@ShatteredEyeStudios - 29.11.2022 02:48

One problem is reloading the pages when the routes are not index.
If you see
The resource you are looking for has been removed, had its name changed, or is temporarily unavailable
you need to add a web.config file with url reroutes to the azure site. ex

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<clear />
<rule name="AngularJS Routes" stopProcessing="true">
<match url=".*" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="/" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>

added to root through ftp , found in publishsettings file under ftp

Ответить
@julioantoniogonzalezmartin3306
@julioantoniogonzalezmartin3306 - 09.12.2022 02:02

This video is incredible amazing, keep it up, bro! you helped me on my current job! Much love from México, wey!

Ответить
@rakeshchauhan-op8qw
@rakeshchauhan-op8qw - 15.12.2022 16:47

Great work mate

Ответить
@zk3714
@zk3714 - 01.01.2023 07:07

Thank you for the detailed tutorial. Very helpful. I want to ask a question: in your tutorial, you deployed your Angular and backend API in two separate Azure App Service. Can one Azure instance host both frontend and backend together?

Ответить
@peaceofmind7048
@peaceofmind7048 - 12.01.2023 14:32

Form india... Thank lot bro ...Keep Rocking 🔥🤘

Ответить
@alexis_suarez
@alexis_suarez - 25.02.2023 08:34

Great tutorial! Thanks man.
I know that you can also upload the angular app to a storage account as a static website. What is the differences between these two approaches?? Is any of them cheaper? or what about performance? what is best?

Ответить
@vata3835
@vata3835 - 02.03.2023 23:33

thank you! very useful video. especially info about firewall rule for SQL database saved me alot of time! Thanks!

Ответить
@nelsnc
@nelsnc - 05.03.2023 23:13

Thanks for sharing! It's really helpful.

Ответить
@sameerfromfsd
@sameerfromfsd - 15.03.2023 14:16

that was exactly i was looking for .... great job thumbs up.

Ответить
@Brxndz_
@Brxndz_ - 30.03.2023 22:10

This was a great video

Ответить
@omarolverar
@omarolverar - 01.04.2023 05:06

Great video! Thanks It was very helpful

Ответить
@umeshshelke725
@umeshshelke725 - 02.04.2023 14:35

how to deploye angular and .net code web api on iis ? can you please make a video on this ?

Ответить
@khalidsultani1896
@khalidsultani1896 - 18.04.2023 08:01

thanks for posting this awesome video and info on putting changes back to azure app or ci/cd

Ответить
@christopherfc4954
@christopherfc4954 - 30.05.2023 18:01

Wonderful, thank you for this detailed tutorial.
I have a question regarding billing. The only paid aspect I see is access to the SQL database, did you actually get about $5 billing? DTU billing is relatively complicated.

Ответить
@michaelbarcellona9512
@michaelbarcellona9512 - 26.06.2023 05:11

Nice job

Ответить
@konradlempart4501
@konradlempart4501 - 11.07.2023 18:34

Thanks mate, I love your charisma :D will try to do this in a second, lets see if it works :)

EDIT: It worked!! <3

Ответить
@ElenaGenge
@ElenaGenge - 07.08.2023 16:13

That would be nice to have one different appSettings.json depending on the environnement and use "DefaultConnection" always and not hardcodding the connection string to prodConnection
Anyway, this is an excellent and complete tutorial ! Thank you very much !

Ответить
@user-re7lg
@user-re7lg - 30.08.2023 16:00

Thank you for this tutorial, it's really helpful.
I had an issue when deploying the frontend part is that when I run the command ng build --configuration=production it creates the dist folder but it contains only assets folder and some js files, so that I can not deploy like you did in the tutorial since I don't have dist/appname.
Can you help me with that ?

Ответить
@Proviper666
@Proviper666 - 01.10.2023 19:38

Do we really need to recreate each table using sql query? Is it possible to do entity framework commands? (update-database)?

Ответить
@guptaAman7
@guptaAman7 - 12.12.2023 19:36

It's really helpful. Thanks

Ответить
@lesedimangope6815
@lesedimangope6815 - 28.12.2023 10:30

goattttttt

Ответить
@maheshguttedar3620
@maheshguttedar3620 - 04.01.2024 17:59

whats yearly cost of this about for small company?

Ответить
@sweetysnehith9692
@sweetysnehith9692 - 09.01.2024 11:58

HI sir
can you please share reference to set custom DNS in front end url

Ответить
@patricknavega112
@patricknavega112 - 16.02.2024 22:03

From Brazil: BEST TUTORIAL EVER, this is exactly what I looking for.Thanks a lot for the content and for the quality.

Ответить
@patricknavega112
@patricknavega112 - 16.02.2024 22:08

Hi Israel,

Do you have some video explaining how set this process by CI/CD resources on Azure devops?

Ответить
@daniel49245
@daniel49245 - 19.03.2024 10:45

Subbed. Great content. I have angular 17, .net 8 api with redis cache and mssql. Are there additional steps because of the redis cache?

Ответить
@Truth-Voyager
@Truth-Voyager - 04.05.2024 20:07

This is the EXACT video I was looking for. Thank you very much my good sir. Hopefully everything still works in 2024 😅

Ответить
@nitrogenius
@nitrogenius - 08.05.2024 01:31

Why do we have 2 webapps instead of 1? Cant we deploy both .NET API and Angular into same webapp?

Ответить
@kevinmelendres7832
@kevinmelendres7832 - 25.05.2024 07:31

THANK YOU!!

Ответить
@naveenpujari8996
@naveenpujari8996 - 28.05.2024 17:47

good and learn Hindi...

Ответить
@germansantiagoramospena1442
@germansantiagoramospena1442 - 10.06.2024 20:55

One of the best tutoriales i've ever seen, simple and straight to the poing, amazing!

Ответить
@raviel_0422
@raviel_0422 - 03.07.2024 18:48

Hello. Does this work in a blazor frontend?

Ответить
@NhiNguyen-eq2xu
@NhiNguyen-eq2xu - 08.07.2024 11:19

Thank you for this tutorial, it helps me alot <3

Ответить
@hectorcontreras9171
@hectorcontreras9171 - 09.07.2024 18:48

I created my database tables using EF Core migrations CLI command: dotnet ef migrations add "Initial" -o "Data/Migrations" followed by: dotnet ef database update . . . how would I accomplish a similar objective in Azure?

Ответить
@IsraelQuiroz
@IsraelQuiroz - 10.07.2022 20:42

Hope you guys found this video helpful! Don't forget to drop a Like & Subscribe!

Ответить