init
This commit is contained in:
commit
68d252c6e4
7
.gitignore
vendored
Normal file
7
.gitignore
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
bin/
|
||||
obj/
|
||||
/packages/
|
||||
riderModule.iml
|
||||
/_ReSharper.Caches/
|
||||
appsettings.Development.json
|
||||
.idea
|
||||
16
GeoPulse Pipeline.sln
Normal file
16
GeoPulse Pipeline.sln
Normal file
@ -0,0 +1,16 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GeoPulse Pipeline", "GeoPulse Pipeline\GeoPulse Pipeline.csproj", "{DFE47FD3-E0F2-4A80-B6B4-E71052DDB0C3}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{DFE47FD3-E0F2-4A80-B6B4-E71052DDB0C3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{DFE47FD3-E0F2-4A80-B6B4-E71052DDB0C3}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{DFE47FD3-E0F2-4A80-B6B4-E71052DDB0C3}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{DFE47FD3-E0F2-4A80-B6B4-E71052DDB0C3}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
6
GeoPulse Pipeline/GeoPulse Pipeline.http
Normal file
6
GeoPulse Pipeline/GeoPulse Pipeline.http
Normal file
@ -0,0 +1,6 @@
|
||||
@GeoPulse_Pipeline_HostAddress = http://localhost:5139
|
||||
|
||||
GET {{GeoPulse_Pipeline_HostAddress}}/weatherforecast/
|
||||
Accept: application/json
|
||||
|
||||
###
|
||||
41
GeoPulse Pipeline/Properties/launchSettings.json
Normal file
41
GeoPulse Pipeline/Properties/launchSettings.json
Normal file
@ -0,0 +1,41 @@
|
||||
{
|
||||
"$schema": "http://json.schemastore.org/launchsettings.json",
|
||||
"iisSettings": {
|
||||
"windowsAuthentication": false,
|
||||
"anonymousAuthentication": true,
|
||||
"iisExpress": {
|
||||
"applicationUrl": "http://0.0.0.0:16835",
|
||||
"sslPort": 44393
|
||||
}
|
||||
},
|
||||
"profiles": {
|
||||
"http": {
|
||||
"commandName": "Project",
|
||||
"dotnetRunMessages": true,
|
||||
"launchBrowser": true,
|
||||
"launchUrl": "swagger",
|
||||
"applicationUrl": "http://0.0.0.0:5139",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
},
|
||||
"https": {
|
||||
"commandName": "Project",
|
||||
"dotnetRunMessages": true,
|
||||
"launchBrowser": true,
|
||||
"launchUrl": "swagger",
|
||||
"applicationUrl": "https://0.0.0.0:7162;http://0.0.0.0:5139",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
},
|
||||
"IIS Express": {
|
||||
"commandName": "IISExpress",
|
||||
"launchBrowser": true,
|
||||
"launchUrl": "swagger",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
9
GeoPulse Pipeline/appsettings.json
Normal file
9
GeoPulse Pipeline/appsettings.json
Normal file
@ -0,0 +1,9 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*"
|
||||
}
|
||||
7
global.json
Normal file
7
global.json
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"sdk": {
|
||||
"version": "8.0.0",
|
||||
"rollForward": "latestMinor",
|
||||
"allowPrerelease": false
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user