Base solution for your next web application
Open Closed

Deploy to Azure #213


User avatar
0
darwinrc created

Good day, all

Any experience regarding the deployment of ASP.NET Boilerplate to Azure Cloud, particularly using continuous delivery?


7 Answer(s)
  • User Avatar
    0
    gvb created

    I'm deploying to Azure for my webApp and it's pretty straight forward and still no problem with the publish !

  • User Avatar
    0
    darwinrc created

    Thanks for your answer.

    I will try and let you know.

  • User Avatar
    0
    julian created

    Hi!

    Regarding the Azure deployment, did you guys deploy it from visual studio or from some other platform?

  • User Avatar
    0
    gvb created

    I deploy from Visual Studio without problem. We do our DB migration and update via Visual Studio for our Azure DB.

  • User Avatar
    0
    darwinrc created

    Hello, all

    I managed to deploy my app to azure, created the application and the database there, but I cannot get the EF migrations working, the tables just don't get created.

    Is there any special consideration regarding this deployment?

    Thanks in advance.

  • User Avatar
    0
    masum7 created

    I also need this EF migration update on azure.

    Not sure how to do that. Any suggestion please?

  • User Avatar
    0
    paddyfink created

    If you deploy from visual studio, you just have to check the option "Update database". If you deploy from TFS with CI, There is a special manipulation to do to make the migration works

    Personally i'm not a big fan of code first migration. I don't like having to generate a file just because I added a new column in a database, or create index with C#. I only use code migration to update my db during the develpment. For the deployment I use a DB projec. I use Release management in TFS to deploy both the website and the database to the differents envionments.

    <a class="postlink" href="https://msdn.microsoft.com/library/vs/alm/release/examples/azure/azure-web-apps-from-build-and-release-hubs">https://msdn.microsoft.com/library/vs/a ... lease-hubs</a> <a class="postlink" href="https://msdn.microsoft.com/library/vs/alm/release/examples/azure/azure-web-apps-and-sql-db">https://msdn.microsoft.com/library/vs/a ... and-sql-db</a>