Giter Site home page Giter Site logo

webapp101's Introduction

webapp101

This is a very basic web app that can be deployed to Azure. It doesn't do anything sophisticated and uses NLog to generate basic statements when the app is restarted. It will spit out the web app slot and instance the application is running on.

Initial Development

This uses dotnet to create a basic application

dotnet new webapp -o webapp101 

From here, the following was added to the project (.csproj file) definition.

  <ItemGroup>
    <PackageReference Include="NLog.Web.AspNetCore" Version="4.8.0" />
    <PackageReference Include="NLog" Version="4.5.11" />
    <Content Update="nlog.config" CopyToOutputDirectory="PreserveNewest" />
    <PackageReference Include="NLog.Extensions.Logging" Version="1.4.0" />
  </ItemGroup>

These changes were added to Program.cs

using Microsoft.Extensions.Logging;
using NLog.Web;

namespace webapp101
{
     public class Program
     {
          public static void Main(string[] args)
          {
               var logger = NLog.Web.NLogBuilder.ConfigureNLog("nlog.config").GetCurrentClassLogger();
               try
               {
                    logger.Debug("init main");
               }
          }
     }
}

Additionally, changes were made in Startup.cs that admittedly don't use NLog but do log info that finds its way into nlog log files.

Deployment

Once you have a web app deployed to Azure, configure a git remote site to point to the SCM host. Once the code is to your liking just perform a git push.

git remote add azure https://webapp101.scm.azurewebsites.net:443/webapp101.git
git push azure

Usage

You'll no doubt notice this web app is just whatever you get with the default dotnet new command. If you log into Kudu and head to d:\home\site\wwwroot you'll find output from nlog.

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

webapp101's People

Contributors

mgfink avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.