initial backend
This commit is contained in:
		
							
								
								
									
										4
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										4
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							@@ -1,2 +1,6 @@
 | 
				
			|||||||
Frontend/node_modules
 | 
					Frontend/node_modules
 | 
				
			||||||
Frontend/dist
 | 
					Frontend/dist
 | 
				
			||||||
 | 
					Server/.vs
 | 
				
			||||||
 | 
					Server/bin
 | 
				
			||||||
 | 
					Server/obj
 | 
				
			||||||
 | 
					Server/Bibblan.csproj.user
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -8,10 +8,11 @@
 | 
				
			|||||||
		"build": "vite build"
 | 
							"build": "vite build"
 | 
				
			||||||
	},
 | 
						},
 | 
				
			||||||
	"devDependencies": {
 | 
						"devDependencies": {
 | 
				
			||||||
		"vite": "^7.1.4",
 | 
							"@types/node": "^24.3.1",
 | 
				
			||||||
		"vite-plugin-solid": "^2.11.8",
 | 
					 | 
				
			||||||
		"terser": "^5.44.0",
 | 
							"terser": "^5.44.0",
 | 
				
			||||||
		"typescript": "^5.9.2"
 | 
							"typescript": "^5.9.2",
 | 
				
			||||||
 | 
							"vite": "^7.1.4",
 | 
				
			||||||
 | 
							"vite-plugin-solid": "^2.11.8"
 | 
				
			||||||
	},
 | 
						},
 | 
				
			||||||
	"dependencies": {
 | 
						"dependencies": {
 | 
				
			||||||
		"solid-js": "^1.9.9"
 | 
							"solid-js": "^1.9.9"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,6 +1,20 @@
 | 
				
			|||||||
import type { Component } from "solid-js";
 | 
					import type { Component } from "solid-js";
 | 
				
			||||||
 | 
					import { createSignal, For, onMount } from "solid-js";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					interface Weather {
 | 
				
			||||||
 | 
						date: string;
 | 
				
			||||||
 | 
						temperatureC: number;
 | 
				
			||||||
 | 
						temperatureF: number;
 | 
				
			||||||
 | 
						summary: string;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const App: Component = () => {
 | 
					const App: Component = () => {
 | 
				
			||||||
 | 
						const [weather, setWeather] = createSignal<Weather[]>([]);
 | 
				
			||||||
 | 
						onMount(() => {
 | 
				
			||||||
 | 
							fetch("/api/weatherforecast")
 | 
				
			||||||
 | 
								.then((r) => r.json())
 | 
				
			||||||
 | 
								.then(setWeather);
 | 
				
			||||||
 | 
						});
 | 
				
			||||||
	return (
 | 
						return (
 | 
				
			||||||
		<div>
 | 
							<div>
 | 
				
			||||||
			<header>
 | 
								<header>
 | 
				
			||||||
@@ -15,6 +29,15 @@ const App: Component = () => {
 | 
				
			|||||||
					Learn Solid
 | 
										Learn Solid
 | 
				
			||||||
				</a>
 | 
									</a>
 | 
				
			||||||
			</header>
 | 
								</header>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
								<For each={weather()}>
 | 
				
			||||||
 | 
									{(item) => (
 | 
				
			||||||
 | 
										<li>
 | 
				
			||||||
 | 
											{item.date} - {item.temperatureC}°C / {item.temperatureF}°F -{" "}
 | 
				
			||||||
 | 
											{item.summary}
 | 
				
			||||||
 | 
										</li>
 | 
				
			||||||
 | 
									)}
 | 
				
			||||||
 | 
								</For>
 | 
				
			||||||
		</div>
 | 
							</div>
 | 
				
			||||||
	);
 | 
						);
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -3,12 +3,12 @@
 | 
				
			|||||||
		"strict": true,
 | 
							"strict": true,
 | 
				
			||||||
		"target": "ESNext",
 | 
							"target": "ESNext",
 | 
				
			||||||
		"module": "ESNext",
 | 
							"module": "ESNext",
 | 
				
			||||||
		"moduleResolution": "node",
 | 
							"moduleResolution": "bundler",
 | 
				
			||||||
		"allowSyntheticDefaultImports": true,
 | 
							"allowSyntheticDefaultImports": true,
 | 
				
			||||||
		"esModuleInterop": true,
 | 
							"esModuleInterop": true,
 | 
				
			||||||
		"jsx": "preserve",
 | 
							"jsx": "preserve",
 | 
				
			||||||
		"jsxImportSource": "solid-js",
 | 
							"jsxImportSource": "solid-js",
 | 
				
			||||||
		"types": ["vite/client"],
 | 
							"types": ["vite/client", "node"],
 | 
				
			||||||
		"noEmit": true,
 | 
							"noEmit": true,
 | 
				
			||||||
		"isolatedModules": true
 | 
							"isolatedModules": true
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,8 +1,9 @@
 | 
				
			|||||||
import { defineConfig } from "vite";
 | 
					import { defineConfig } from "vite";
 | 
				
			||||||
import solidPlugin from "vite-plugin-solid";
 | 
					import solidPlugin from "vite-plugin-solid";
 | 
				
			||||||
import { env } from "process";
 | 
					import { env } from "process";
 | 
				
			||||||
//test
 | 
					
 | 
				
			||||||
const target = env.BACKEND_URL ?? "https://localhost:5001";
 | 
					const target = env.BACKEND_URL ?? "http://localhost:5084/"; //"https://localhost:7192/";
 | 
				
			||||||
 | 
					console.log("vite backend:", target);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export default defineConfig({
 | 
					export default defineConfig({
 | 
				
			||||||
	plugins: [solidPlugin()],
 | 
						plugins: [solidPlugin()],
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -475,6 +475,13 @@
 | 
				
			|||||||
  resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.8.tgz#958b91c991b1867ced318bedea0e215ee050726e"
 | 
					  resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.8.tgz#958b91c991b1867ced318bedea0e215ee050726e"
 | 
				
			||||||
  integrity sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==
 | 
					  integrity sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					"@types/node@^24.3.1":
 | 
				
			||||||
 | 
					  version "24.3.1"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/@types/node/-/node-24.3.1.tgz#b0a3fb2afed0ef98e8d7f06d46ef6349047709f3"
 | 
				
			||||||
 | 
					  integrity sha512-3vXmQDXy+woz+gnrTvuvNrPzekOi+Ds0ReMxw0LzBiK3a+1k0kQn9f2NWk+lgD4rJehFUmYy2gMhJ2ZI+7YP9g==
 | 
				
			||||||
 | 
					  dependencies:
 | 
				
			||||||
 | 
					    undici-types "~7.10.0"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
acorn@^8.15.0:
 | 
					acorn@^8.15.0:
 | 
				
			||||||
  version "8.15.0"
 | 
					  version "8.15.0"
 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.15.0.tgz#a360898bc415edaac46c8241f6383975b930b816"
 | 
					  resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.15.0.tgz#a360898bc415edaac46c8241f6383975b930b816"
 | 
				
			||||||
@@ -787,6 +794,11 @@ typescript@^5.9.2:
 | 
				
			|||||||
  resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.9.2.tgz#d93450cddec5154a2d5cabe3b8102b83316fb2a6"
 | 
					  resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.9.2.tgz#d93450cddec5154a2d5cabe3b8102b83316fb2a6"
 | 
				
			||||||
  integrity sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==
 | 
					  integrity sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					undici-types@~7.10.0:
 | 
				
			||||||
 | 
					  version "7.10.0"
 | 
				
			||||||
 | 
					  resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.10.0.tgz#4ac2e058ce56b462b056e629cc6a02393d3ff350"
 | 
				
			||||||
 | 
					  integrity sha512-t5Fy/nfn+14LuOc2KNYg75vZqClpAiqscVvMygNnlsHBFpSXdJaYtXMcdNLpl/Qvc3P2cB3s6lOV51nqsFq4ag==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
update-browserslist-db@^1.1.3:
 | 
					update-browserslist-db@^1.1.3:
 | 
				
			||||||
  version "1.1.3"
 | 
					  version "1.1.3"
 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz#348377dd245216f9e7060ff50b15a1b740b75420"
 | 
					  resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz#348377dd245216f9e7060ff50b15a1b740b75420"
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										19
									
								
								Server/Bibblan.csproj
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								Server/Bibblan.csproj
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,19 @@
 | 
				
			|||||||
 | 
					<Project Sdk="Microsoft.NET.Sdk.Web">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  <PropertyGroup>
 | 
				
			||||||
 | 
					    <TargetFramework>net9.0</TargetFramework>
 | 
				
			||||||
 | 
					    <Nullable>enable</Nullable>
 | 
				
			||||||
 | 
					    <ImplicitUsings>enable</ImplicitUsings>
 | 
				
			||||||
 | 
					    <SpaRoot>../Frontend</SpaRoot>
 | 
				
			||||||
 | 
					    <SpaProxyLaunchCommand>npm run dev</SpaProxyLaunchCommand>
 | 
				
			||||||
 | 
					    <SpaProxyServerUrl>http://localhost:3000</SpaProxyServerUrl>
 | 
				
			||||||
 | 
					  </PropertyGroup>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  <ItemGroup>
 | 
				
			||||||
 | 
					    <PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.6" />
 | 
				
			||||||
 | 
					    <PackageReference Include="Microsoft.AspNetCore.SpaProxy">
 | 
				
			||||||
 | 
					      <Version>9.*-*</Version>
 | 
				
			||||||
 | 
					    </PackageReference>
 | 
				
			||||||
 | 
					  </ItemGroup>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					</Project>
 | 
				
			||||||
							
								
								
									
										6
									
								
								Server/Bibblan.http
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										6
									
								
								Server/Bibblan.http
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,6 @@
 | 
				
			|||||||
 | 
					@Bibblan_HostAddress = http://localhost:5084
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					GET {{Bibblan_HostAddress}}/api/weatherforecast/
 | 
				
			||||||
 | 
					Accept: application/json
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					###
 | 
				
			||||||
							
								
								
									
										22
									
								
								Server/Bibblan.sln
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										22
									
								
								Server/Bibblan.sln
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,22 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
 | 
					Microsoft Visual Studio Solution File, Format Version 12.00
 | 
				
			||||||
 | 
					# Visual Studio Version 17
 | 
				
			||||||
 | 
					VisualStudioVersion = 17.12.35728.132 d17.12
 | 
				
			||||||
 | 
					MinimumVisualStudioVersion = 10.0.40219.1
 | 
				
			||||||
 | 
					Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Bibblan", "Bibblan.csproj", "{760702AA-30CE-4B49-BF4F-D8A9E01D5B6C}"
 | 
				
			||||||
 | 
					EndProject
 | 
				
			||||||
 | 
					Global
 | 
				
			||||||
 | 
						GlobalSection(SolutionConfigurationPlatforms) = preSolution
 | 
				
			||||||
 | 
							Debug|Any CPU = Debug|Any CPU
 | 
				
			||||||
 | 
							Release|Any CPU = Release|Any CPU
 | 
				
			||||||
 | 
						EndGlobalSection
 | 
				
			||||||
 | 
						GlobalSection(ProjectConfigurationPlatforms) = postSolution
 | 
				
			||||||
 | 
							{760702AA-30CE-4B49-BF4F-D8A9E01D5B6C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
 | 
				
			||||||
 | 
							{760702AA-30CE-4B49-BF4F-D8A9E01D5B6C}.Debug|Any CPU.Build.0 = Debug|Any CPU
 | 
				
			||||||
 | 
							{760702AA-30CE-4B49-BF4F-D8A9E01D5B6C}.Release|Any CPU.ActiveCfg = Release|Any CPU
 | 
				
			||||||
 | 
							{760702AA-30CE-4B49-BF4F-D8A9E01D5B6C}.Release|Any CPU.Build.0 = Release|Any CPU
 | 
				
			||||||
 | 
						EndGlobalSection
 | 
				
			||||||
 | 
						GlobalSection(SolutionProperties) = preSolution
 | 
				
			||||||
 | 
							HideSolutionNode = FALSE
 | 
				
			||||||
 | 
						EndGlobalSection
 | 
				
			||||||
 | 
					EndGlobal
 | 
				
			||||||
							
								
								
									
										8
									
								
								Server/CHANGELOG.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										8
									
								
								Server/CHANGELOG.md
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,8 @@
 | 
				
			|||||||
 | 
					This file explains how Visual Studio created the project.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					The following steps were used to generate this project:
 | 
				
			||||||
 | 
					- Create new ASP\.NET Core Web API project.
 | 
				
			||||||
 | 
					- Update `launchSettings.json` to register the SPA proxy as a startup assembly.
 | 
				
			||||||
 | 
					- Update project file to add a reference to the frontend project and set SPA properties.
 | 
				
			||||||
 | 
					- Add project to the startup projects list.
 | 
				
			||||||
 | 
					- Write this file.
 | 
				
			||||||
							
								
								
									
										33
									
								
								Server/Controllers/WeatherForecastController.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										33
									
								
								Server/Controllers/WeatherForecastController.cs
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,33 @@
 | 
				
			|||||||
 | 
					using Microsoft.AspNetCore.Mvc;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					namespace Bibblan.Controllers
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					    [ApiController]
 | 
				
			||||||
 | 
					    [Route("api/[controller]")]
 | 
				
			||||||
 | 
					    public class WeatherForecastController : ControllerBase
 | 
				
			||||||
 | 
					    {
 | 
				
			||||||
 | 
					        private static readonly string[] Summaries = new[]
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching"
 | 
				
			||||||
 | 
					        };
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        private readonly ILogger<WeatherForecastController> _logger;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        public WeatherForecastController(ILogger<WeatherForecastController> logger)
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            _logger = logger;
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        [HttpGet(Name = "GetWeatherForecast")]
 | 
				
			||||||
 | 
					        public IEnumerable<WeatherForecast> Get()
 | 
				
			||||||
 | 
					        {
 | 
				
			||||||
 | 
					            return Enumerable.Range(1, 5).Select(index => new WeatherForecast
 | 
				
			||||||
 | 
					            {
 | 
				
			||||||
 | 
					                Date = DateOnly.FromDateTime(DateTime.Now.AddDays(index)),
 | 
				
			||||||
 | 
					                TemperatureC = Random.Shared.Next(-20, 55),
 | 
				
			||||||
 | 
					                Summary = Summaries[Random.Shared.Next(Summaries.Length)]
 | 
				
			||||||
 | 
					            })
 | 
				
			||||||
 | 
					            .ToArray();
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										28
									
								
								Server/Program.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										28
									
								
								Server/Program.cs
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,28 @@
 | 
				
			|||||||
 | 
					var builder = WebApplication.CreateBuilder(args);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// Add services to the container.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					builder.Services.AddControllers();
 | 
				
			||||||
 | 
					// Learn more about configuring OpenAPI at https://aka.ms/aspnet/openapi
 | 
				
			||||||
 | 
					builder.Services.AddOpenApi();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					var app = builder.Build();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					app.UseDefaultFiles();
 | 
				
			||||||
 | 
					app.MapStaticAssets();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// Configure the HTTP request pipeline.
 | 
				
			||||||
 | 
					if (app.Environment.IsDevelopment())
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					    app.MapOpenApi();
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					app.UseHttpsRedirection();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					app.UseAuthorization();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					app.MapControllers();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					app.MapFallbackToFile("/index.html");
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					app.Run();
 | 
				
			||||||
							
								
								
									
										16
									
								
								Server/Properties/launchSettings.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										16
									
								
								Server/Properties/launchSettings.json
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,16 @@
 | 
				
			|||||||
 | 
					{
 | 
				
			||||||
 | 
					  "$schema": "https://json.schemastore.org/launchsettings.json",
 | 
				
			||||||
 | 
					  "profiles": {
 | 
				
			||||||
 | 
					    "http": {
 | 
				
			||||||
 | 
					      "commandName": "Project",
 | 
				
			||||||
 | 
					      "dotnetRunMessages": true,
 | 
				
			||||||
 | 
					      "launchBrowser": false,
 | 
				
			||||||
 | 
					      "applicationUrl": "http://localhost:5084",
 | 
				
			||||||
 | 
					      "environmentVariables": {
 | 
				
			||||||
 | 
					        "ASPNETCORE_ENVIRONMENT": "Development",
 | 
				
			||||||
 | 
					        "ASPNETCORE_HOSTINGSTARTUPASSEMBLIES": "Microsoft.AspNetCore.SpaProxy"
 | 
				
			||||||
 | 
					      }
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
							
								
								
									
										13
									
								
								Server/WeatherForecast.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										13
									
								
								Server/WeatherForecast.cs
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,13 @@
 | 
				
			|||||||
 | 
					namespace Bibblan
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
					    public class WeatherForecast
 | 
				
			||||||
 | 
					    {
 | 
				
			||||||
 | 
					        public DateOnly Date { get; set; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        public int TemperatureC { get; set; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        public string? Summary { get; set; }
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										8
									
								
								Server/appsettings.Development.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										8
									
								
								Server/appsettings.Development.json
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,8 @@
 | 
				
			|||||||
 | 
					{
 | 
				
			||||||
 | 
					  "Logging": {
 | 
				
			||||||
 | 
					    "LogLevel": {
 | 
				
			||||||
 | 
					      "Default": "Information",
 | 
				
			||||||
 | 
					      "Microsoft.AspNetCore": "Warning"
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										9
									
								
								Server/appsettings.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										9
									
								
								Server/appsettings.json
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,9 @@
 | 
				
			|||||||
 | 
					{
 | 
				
			||||||
 | 
					  "Logging": {
 | 
				
			||||||
 | 
					    "LogLevel": {
 | 
				
			||||||
 | 
					      "Default": "Information",
 | 
				
			||||||
 | 
					      "Microsoft.AspNetCore": "Warning"
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					  },
 | 
				
			||||||
 | 
					  "AllowedHosts": "*"
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
		Reference in New Issue
	
	Block a user