feat: Enhance static file serving and routing for development and production environments #3

This commit is contained in:
Marek Lesko
2025-07-27 16:40:13 +00:00
parent b991f009c7
commit af3b0aefe4
4 changed files with 47 additions and 3 deletions

View File

@@ -7,7 +7,6 @@ stages: # Define the stages of the pipeline.
web-build: # This job runs in the build stage, which runs first.
stage: build
image: node:24
parallel: 2
script:
- cd Web
- npm install
@@ -22,7 +21,6 @@ web-build: # This job runs in the build stage, which runs first.
api-build:
stage: build
image: mcr.microsoft.com/dotnet/sdk:8.0
parallel: 2
script:
- cd Api
- dotnet publish Api.csproj --output ./build --runtime linux-x64 --configuration Release --self-contained true