new customer included

This commit is contained in:
root 2020-06-07 15:21:18 +02:00
parent 38e797cb7b
commit 6a5d12d5a9
3 changed files with 81 additions and 19 deletions

25
v2.0/.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,25 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch (console)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/LetsEncrypt/bin/Debug/netcoreapp3.1/LetsEncrypt.dll",
"args": [],
"cwd": "${workspaceFolder}/LetsEncrypt",
"console": "internalConsole",
"stopAtEntry": false
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach",
"processId": "${command:pickProcess}"
}
]
}

42
v2.0/.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,42 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/LetsEncrypt/LetsEncrypt.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/LetsEncrypt/LetsEncrypt.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"${workspaceFolder}/LetsEncrypt/LetsEncrypt.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
}
]
}

View File

@ -1,7 +1,7 @@
{ {
"AppSettings": { "AppSettings": {
"active": "StagingV2", "active": "ProductionV2",
"environments": [ "environments": [
{ {
@ -27,7 +27,7 @@
"customers": [ "customers": [
{ {
"id": "9b4c8584-dc83-4388-b45f-2942e34dca9d", "id": "9b4c8584-dc83-4388-b45f-2942e34dca9d",
"contacts": [ "maksym.sadovnychyy@google.com" ], "contacts": [ "maksym.sadovnychyy@gmail.com" ],
"name": "Maksym", "name": "Maksym",
"lastname": "Sadovnychyy", "lastname": "Sadovnychyy",
@ -44,38 +44,33 @@
"api.maks-it.com", "api.maks-it.com",
"www.api.maks-it.com", "www.api.maks-it.com",
"dev.maks-it.com", "dev.maks-it.com",
"www.dev.maks-it.com", "www.dev.maks-it.com"
"cleaningacademy.maks-it.com",
"www.cleaningacademy.maks-it.com"
], ],
"challenge": "http-01" "challenge": "http-01"
} }
] ]
}, },
{ {
"id": "d6be989c-3b68-480d-9f4f-b7317674847a", "id": "341ebe34-e2b3-4645-9f54-aa4fe8eb0250",
"contacts": [ "anastasiia.pavlovskaia@gmail.com" ], "contacts": [ "maksym.sadovnychyy@gmail.com" ],
"name": "Maksym",
"name": "Anastasiia", "lastname": "Sadovnychyy",
"lastname": "Pavlovskaia",
"sites": [ "sites": [
{ {
"name": "aerusitalia.it",
"name": "nastyarey.com",
"hosts": [ "hosts": [
"nastyarey.com", "aerusitalia.it",
"www.nastyarey.com", "www.aerusitalia.it"
"it.nastyarey.com",
"www.it.nastyarey.com",
"ru.nastyarey.com",
"www.ru.nastyarey.com"
], ],
"challenge": "http-01" "challenge": "http-01"
} }
] ]
} }
],
"_customers": [
] ]
} }
} }