From bebcb96bb867ae6e44c107cbed4b15871652ae0d Mon Sep 17 00:00:00 2001 From: Daniel Gyulai Date: Sun, 11 Oct 2020 18:35:51 +0200 Subject: [PATCH] ASP.NET vol2 --- CoviDok/CoviDok.csproj | 13 +++++++++ CoviDok/Dockerfile | 21 ++++++++++++++ CoviDok/Program.cs | 26 +++++++++++++++++ CoviDok/Properties/launchSettings.json | 33 +++++++++++++++++++++ CoviDok/Startup.cs | 40 ++++++++++++++++++++++++++ CoviDok/appsettings.Development.json | 9 ++++++ CoviDok/appsettings.json | 10 +++++++ 7 files changed, 152 insertions(+) create mode 100644 CoviDok/CoviDok.csproj create mode 100644 CoviDok/Dockerfile create mode 100644 CoviDok/Program.cs create mode 100644 CoviDok/Properties/launchSettings.json create mode 100644 CoviDok/Startup.cs create mode 100644 CoviDok/appsettings.Development.json create mode 100644 CoviDok/appsettings.json diff --git a/CoviDok/CoviDok.csproj b/CoviDok/CoviDok.csproj new file mode 100644 index 0000000..f450963 --- /dev/null +++ b/CoviDok/CoviDok.csproj @@ -0,0 +1,13 @@ + + + + netcoreapp3.1 + Linux + ..\.. + + + + + + + diff --git a/CoviDok/Dockerfile b/CoviDok/Dockerfile new file mode 100644 index 0000000..0d45fc9 --- /dev/null +++ b/CoviDok/Dockerfile @@ -0,0 +1,21 @@ +#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging. + +FROM mcr.microsoft.com/dotnet/core/aspnet:3.1-buster-slim AS base +WORKDIR /app +EXPOSE 80 + +FROM mcr.microsoft.com/dotnet/core/sdk:3.1-buster AS build +WORKDIR /src +COPY ["covidok-backend/CoviDok/CoviDok.csproj", "covidok-backend/CoviDok/"] +RUN dotnet restore "covidok-backend/CoviDok/CoviDok.csproj" +COPY . . +WORKDIR "/src/covidok-backend/CoviDok" +RUN dotnet build "CoviDok.csproj" -c Release -o /app/build + +FROM build AS publish +RUN dotnet publish "CoviDok.csproj" -c Release -o /app/publish + +FROM base AS final +WORKDIR /app +COPY --from=publish /app/publish . +ENTRYPOINT ["dotnet", "CoviDok.dll"] \ No newline at end of file diff --git a/CoviDok/Program.cs b/CoviDok/Program.cs new file mode 100644 index 0000000..7b27420 --- /dev/null +++ b/CoviDok/Program.cs @@ -0,0 +1,26 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Hosting; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.Hosting; +using Microsoft.Extensions.Logging; + +namespace CoviDok +{ + public class Program + { + public static void Main(string[] args) + { + CreateHostBuilder(args).Build().Run(); + } + + public static IHostBuilder CreateHostBuilder(string[] args) => + Host.CreateDefaultBuilder(args) + .ConfigureWebHostDefaults(webBuilder => + { + webBuilder.UseStartup(); + }); + } +} diff --git a/CoviDok/Properties/launchSettings.json b/CoviDok/Properties/launchSettings.json new file mode 100644 index 0000000..5367cfd --- /dev/null +++ b/CoviDok/Properties/launchSettings.json @@ -0,0 +1,33 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:56030", + "sslPort": 0 + } + }, + "profiles": { + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "CoviDok": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "http://localhost:5000" + }, + "Docker": { + "commandName": "Docker", + "launchBrowser": true, + "launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}", + "publishAllPorts": true + } + } +} \ No newline at end of file diff --git a/CoviDok/Startup.cs b/CoviDok/Startup.cs new file mode 100644 index 0000000..8c89764 --- /dev/null +++ b/CoviDok/Startup.cs @@ -0,0 +1,40 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Builder; +using Microsoft.AspNetCore.Hosting; +using Microsoft.AspNetCore.Http; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Hosting; + +namespace CoviDok +{ + public class Startup + { + // This method gets called by the runtime. Use this method to add services to the container. + // For more information on how to configure your application, visit https://go.microsoft.com/fwlink/?LinkID=398940 + public void ConfigureServices(IServiceCollection services) + { + } + + // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. + public void Configure(IApplicationBuilder app, IWebHostEnvironment env) + { + if (env.IsDevelopment()) + { + app.UseDeveloperExceptionPage(); + } + + app.UseRouting(); + + app.UseEndpoints(endpoints => + { + endpoints.MapGet("/", async context => + { + await context.Response.WriteAsync("Hello World!"); + }); + }); + } + } +} diff --git a/CoviDok/appsettings.Development.json b/CoviDok/appsettings.Development.json new file mode 100644 index 0000000..8983e0f --- /dev/null +++ b/CoviDok/appsettings.Development.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } + } +} diff --git a/CoviDok/appsettings.json b/CoviDok/appsettings.json new file mode 100644 index 0000000..d9d9a9b --- /dev/null +++ b/CoviDok/appsettings.json @@ -0,0 +1,10 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } + }, + "AllowedHosts": "*" +}