Fusionnnn
continuous-integration/drone/push Build is passing Details

blazor
Antoine JOURDAIN 1 year ago
commit a09eab26ae

@ -74,6 +74,7 @@ steps:
CONTAINERNAME: api-in-english-please CONTAINERNAME: api-in-english-please
COMMAND: create COMMAND: create
OVERWRITE: true OVERWRITE: true
CODEFIRST_CLIENTDRONE_ENV_BASE_PATH: /containers/antoinejourdain-api-in-english-please/
depends_on: [ docker-build-api ] depends_on: [ docker-build-api ]
when: when:
branch: branch:
@ -103,6 +104,7 @@ steps:
CONTAINERNAME: in-english-please CONTAINERNAME: in-english-please
COMMAND: create COMMAND: create
OVERWRITE: true OVERWRITE: true
CODEFIRST_CLIENTDRONE_ENV_BASE_PATH: /containers/antoinejourdain-in-english-please/
depends_on: [ docker-build-app ] depends_on: [ docker-build-app ]
when: when:
branch: branch:

@ -1,14 +1,5 @@
{ {
"profiles": { "profiles": {
"http": {
"commandName": "Project",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"applicationUrl": "http://localhost:5138",
"dotnetRunMessages": true
},
"https": { "https": {
"commandName": "Project", "commandName": "Project",
"launchBrowser": true, "launchBrowser": true,

@ -25,24 +25,24 @@ namespace adminBlazor.Services
var item = UserFactory.Create(model); var item = UserFactory.Create(model);
// Save the data // Save the data
await _http.PostAsJsonAsync("https://localhost:7234/api/User/add", item); await _http.PostAsJsonAsync("http://host.docker.internal:7234/api/User/", item);
} }
public async Task<int> Count() public async Task<int> Count()
{ {
return await _http.GetFromJsonAsync<int>("https://localhost:7234/api/User/count"); return await _http.GetFromJsonAsync<int>("http://host.docker.internal:7234/api/User/count");
} }
public async Task<List<User>> List(int currentPage, int pageSize) public async Task<List<User>> List(int currentPage, int pageSize)
{ {
_logger.LogInformation("User API : call of method LIST."); _logger.LogInformation("User API : call of method LIST.");
return await _http.GetFromJsonAsync<List<User>>($"https://localhost:7234/api/User/?currentPage={currentPage}&pageSize={pageSize}"); return await _http.GetFromJsonAsync<List<User>>($"http://host.docker.internal:7234/api/User/?currentPage={currentPage}&pageSize={pageSize}");
} }
public async Task<User> GetById(int id) public async Task<User> GetById(int id)
{ {
_logger.LogInformation("User API : call of method GetByID."); _logger.LogInformation("User API : call of method GetByID.");
return await _http.GetFromJsonAsync<User>($"https://localhost:7234/api/User/{id}"); return await _http.GetFromJsonAsync<User>($"http://host.docker.internal:7234/api/User/{id}");
} }
public async Task Update(int id, UserModel model) public async Task Update(int id, UserModel model)
@ -52,18 +52,18 @@ namespace adminBlazor.Services
_logger.LogInformation("User API : call of method UPDATE on User ID : {Id}.", id); _logger.LogInformation("User API : call of method UPDATE on User ID : {Id}.", id);
await _http.PutAsJsonAsync($"https://localhost:7234/api/User/{id}", item); await _http.PutAsJsonAsync($"http://host.docker.internal:7234/api/User/{id}", item);
} }
public async Task Delete(int id) public async Task Delete(int id)
{ {
_logger.LogInformation("User API : call of method DELETE on User ID : {Id}.", id); _logger.LogInformation("User API : call of method DELETE on User ID : {Id}.", id);
await _http.DeleteAsync($"https://localhost:7234/api/User/{id}"); await _http.DeleteAsync($"http://host.docker.internal:7234/api/User/{id}");
} }
public async Task<List<CraftingRecipe>> GetRecipes() public async Task<List<CraftingRecipe>> GetRecipes()
{ {
return await _http.GetFromJsonAsync<List<CraftingRecipe>>("https://localhost:7234/api/User/recipe"); return await _http.GetFromJsonAsync<List<CraftingRecipe>>("http://host.docker.internal:7234/api/User/recipe");
} }
} }
} }

@ -1,4 +1,5 @@
{ {
"https_port": 443,
"Creators": { "Creators": {
"Name": [ "Name": [
"Patrick Brugière", "Patrick Brugière",
@ -10,7 +11,8 @@
"Logging": { "Logging": {
"LogLevel": { "LogLevel": {
"Default": "Error", "Default": "Error",
"Microsoft": "Warning" "Microsoft.AspNetCore": "Warning",
"Microsoft.AspNetCore.DataProtection": "None"
}, },
"Debug": { "Debug": {
"LogLevel": { "LogLevel": {

Loading…
Cancel
Save