Windows azure is not available in my country

I would like to learn the azure platform and create applications that use azure. So I was looking for a tutorial that said that I create an account first, but my country is NOT AVAILABLE, so I can not create an account! Is there a way in which I can develop applications using the azure platform? Is there some kind of emulator there?

Can someone please be kind enough to give me some starting links because I don't have the basic skills in this area?

Many thanks!

+4
source share
2 answers

When you install the + SDK tools, you get a local runtime that emulates calculations and storage (the store is actually stored in a local SQL instance, SQL Express is used by default). You can use SQL Server or SQL Azure to model a local database. What you are not getting is ACS, Service Bus and Cache (and maybe something else I am missing :)). Check this link for the differences between the real repository and the simulated repository, and this link to calculate the differences.

+2
source

The emulator is part of the Azure SDK.

+2
source

Source: https://habr.com/ru/post/1401495/


All Articles