Deployment Flashcards

(8 cards)

1
Q

On which cloud provider is the most common way to deploy a microsoft web app?

A

On azure (duh)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Do we need to deploy the software in a single bundle?

A

No. Azure provide separated services. E.g:

Azure app service. Azure SQL DB, azure signalR service.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Why would we use azure implementation of signal R?

A

Scalability. More simultaneous clients connected at once.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Do client side blazor require any special treatment?

A

No. Client side blazor is a static file website.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is CORS and what needs to be done on client side blazor to make it work?

A

Cross origin resource sharing. It is necessary

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How to create a production settings?

A

By adding an app settings file, let’s say one called appsettings.production.json. Then define the ENVIRONMENT to Production.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are the common building blocks of the app?

A

one webapp with the api, one database service, one signalR service (optional, but recommended)., another webapp for the client.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Does the azure signalR service require any additional component in the app?

A

Yes. Necessary to add azure signalR and then add this as a service along with the connection string.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly