13 Commits
Author SHA1 Message Date
khwezi ea77dfa4af Merge pull request 'Refactored docker shop admin image name' (#6) from styling into master
Reviewed-on: #6
2026-05-16 02:02:21 +02:00
Khwezi Mngoma 78c58d96b9 Refactored docker shop admin image name
continuous-integration/drone/pr Build is passing
2026-05-16 02:01:46 +02:00
khwezi a002323d69 Merge pull request 'Fixed PVC reference' (#5) from styling into master
Reviewed-on: #5
2026-05-16 01:51:23 +02:00
Khwezi Mngoma 2f11eaecf8 Fixed PVC reference
continuous-integration/drone/pr Build is passing
2026-05-16 01:50:56 +02:00
khwezi 519ef68ef8 Merge pull request 'Refactored manifest ingressroute' (#4) from styling into master
Reviewed-on: #4
2026-05-16 01:43:10 +02:00
Khwezi Mngoma 331acb2ccb Refactored manifest ingressroute
continuous-integration/drone/pr Build is passing
2026-05-16 01:41:45 +02:00
khwezi 98eefa89b4 Merge pull request 'Refactored dockerfile' (#3) from styling into master
Reviewed-on: #3
2026-05-16 01:34:04 +02:00
Khwezi Mngoma 216f4978d7 Refactored dockerfile
continuous-integration/drone/pr Build is passing
2026-05-16 01:33:17 +02:00
khwezi 3b632a5bc7 Merge pull request 'Run trigger' (#2) from styling into master
Reviewed-on: #2
2026-05-16 01:27:13 +02:00
Khwezi Mngoma 0ce43a4779 Run trigger
continuous-integration/drone/pr Build is failing
2026-05-16 01:26:55 +02:00
khwezi f19eaa75ae Merge pull request 'styling' (#1) from styling into master
Reviewed-on: #1
2026-05-16 01:24:48 +02:00
Khwezi Mngoma 847fccfdea Removed unwanted pages 2026-05-16 01:24:27 +02:00
Khwezi Mngoma db160e9b96 First build 2026-05-16 01:23:31 +02:00
8 changed files with 13 additions and 78 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ steps:
image: plugins/docker
settings:
registry: nexus.khongisa.co.za
repo: nexus.khongisa.co.za/litecharms-shopadmin-uat
repo: nexus.khongisa.co.za/litecharms-shopadmin
tags: [ latest, "1.${DRONE_BUILD_NUMBER}" ]
custom_labels:
- org.opencontainers.image.source=https://gitea.khongisa.co.za/litecharms/litecharms-shopadmin-uat
+1 -1
View File
@@ -3,7 +3,7 @@ FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
WORKDIR /app
COPY ["nuget.config", "./"]
COPY ["ShopAdmin/ShopAdmin.csproj", "Shop/"]
COPY ["ShopAdmin/ShopAdmin.csproj", "ShopAdmin/"]
RUN dotnet restore "ShopAdmin/ShopAdmin.csproj" --configfile nuget.config
COPY . .
RUN dotnet publish "ShopAdmin/ShopAdmin.csproj" -c Release -o /app/publish /p:UseAppHost=false
+6
View File
@@ -1,3 +1,9 @@
<Solution>
<Folder Name="/Solution Items/">
<File Path=".drone.yml" />
<File Path=".editorconfig" />
<File Path="Dockerfile" />
<File Path="litecharms-shopadmin-uat.yml" />
</Folder>
<Project Path="ShopAdmin/ShopAdmin.csproj" />
</Solution>
+1 -1
View File
@@ -9,7 +9,7 @@
<article class="content px-4">
@* @Body *@
</article>
</main>
</main>
</div>
<div id="blazor-error-ui" data-nosnippet>
-7
View File
@@ -1,7 +0,0 @@
@page "/"
<PageTitle>Home</PageTitle>
<h1>Hello, world!</h1>
Welcome to your new app.
+1 -1
View File
@@ -2,4 +2,4 @@
@layout MainLayout
<h3>Not Found</h3>
<p>Sorry, the content you are looking for does not exist.</p>
<p>Sorry, the content you are looking for does not exist</p>
-64
View File
@@ -1,64 +0,0 @@
@page "/weather"
@attribute [StreamRendering]
<PageTitle>Weather</PageTitle>
<h1>Weather</h1>
<p>This component demonstrates showing data.</p>
@if (forecasts == null)
{
<p><em>Loading...</em></p>
}
else
{
<table class="table">
<thead>
<tr>
<th>Date</th>
<th aria-label="Temperature in Celsius">Temp. (C)</th>
<th aria-label="Temperature in Fahrenheit">Temp. (F)</th>
<th>Summary</th>
</tr>
</thead>
<tbody>
@foreach (var forecast in forecasts)
{
<tr>
<td>@forecast.Date.ToShortDateString()</td>
<td>@forecast.TemperatureC</td>
<td>@forecast.TemperatureF</td>
<td>@forecast.Summary</td>
</tr>
}
</tbody>
</table>
}
@code {
private WeatherForecast[]? forecasts;
protected override async Task OnInitializedAsync()
{
// Simulate asynchronous loading to demonstrate streaming rendering
await Task.Delay(500);
var startDate = DateOnly.FromDateTime(DateTime.Now);
var summaries = new[] { "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" };
forecasts = Enumerable.Range(1, 5).Select(index => new WeatherForecast
{
Date = startDate.AddDays(index),
TemperatureC = Random.Shared.Next(-20, 55),
Summary = summaries[Random.Shared.Next(summaries.Length)]
}).ToArray();
}
private class WeatherForecast
{
public DateOnly Date { get; set; }
public int TemperatureC { get; set; }
public string? Summary { get; set; }
public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
}
}
+3 -3
View File
@@ -29,7 +29,7 @@ data:
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: shop-data-pvc
name: shopadmin-data-pvc
namespace: litecharms-shopadmin-uat
spec:
accessModes: ["ReadWriteMany"]
@@ -121,7 +121,7 @@ spec:
volumes:
- name: data
persistentVolumeClaim:
claimName: shop-data-pvc
claimName: shopadmin-data-pvc
---
apiVersion: v1
kind: Service
@@ -147,7 +147,7 @@ spec:
entryPoints:
- websecure
routes:
- match: Host(`shop.uat.khongisa.co.za`)
- match: Host(`shopadmin.uat.khongisa.co.za`)
kind: Rule
services:
- name: shop-service