JmlKhan
JmlKhan

Reputation: 11

Deploying ASP.NET Core Web API with SQL database

I have created a small todo app for my resume. Now I am struggling with deploying (backend: ASP.NET Core Web API, frontend: vueJs and database).

I have tried to deploy the ASP.NET Core Web API to Azure, but failed to connect with the database.

Could you explain the full deployment process?

Upvotes: 1

Views: 635

Answers (1)

Thiago Custodio
Thiago Custodio

Reputation: 18387

You just need to configure it under App Settings -> Configuration

https://learn.microsoft.com/en-us/azure/app-service/configure-common#configure-connection-strings

Upvotes: 1

Related Questions