Skip to content
This repository has been archived by the owner on Jul 9, 2024. It is now read-only.

Commit

Permalink
CodeReview.
Browse files Browse the repository at this point in the history
  • Loading branch information
Utar94 committed Apr 26, 2024
1 parent d39f2cc commit 78709d5
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
6 changes: 5 additions & 1 deletion backend/src/Logitar.Master/Logitar.Master.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
Expand All @@ -23,4 +23,8 @@
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
</ItemGroup>

<ItemGroup>
<Using Include="System.Text.Json.Serialization" />
</ItemGroup>

</Project>
1 change: 0 additions & 1 deletion backend/src/Logitar.Master/Startup.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using Logitar.Master.Extensions;
using Logitar.Master.Settings;
using System.Text.Json.Serialization;

namespace Logitar.Master;

Expand Down
14 changes: 14 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
version: '3.8'
name: logitar_master
services:
logitar_master_backend:
build:
context: ./backend
dockerfile: /src/Logitar.Master/Dockerfile
image: logitar_master_backend
container_name: Logitar.Master_backend
restart: unless-stopped
environment:
ASPNETCORE_Environment: Development
ports:
- 8091:8080

0 comments on commit 78709d5

Please sign in to comment.