chore/changed-jenkinsfile
Some checks failed
SPMS_API/pipeline/head There was a failure building this commit

1. 젠킨스 파일 변경
2. 패키지 설치
This commit is contained in:
SEAN 2026-01-19 12:53:02 +09:00
parent db999a53b8
commit eddaf5e368
4 changed files with 53 additions and 3 deletions

9
Jenkinsfile vendored
View File

@ -24,6 +24,15 @@ pipeline {
} else {
error "This branch(${branchName}) can't set container (USE develop or main branch)"
}
else if (branchName == 'staging') {
TARGET_BUILD_CONTAINER = 'spms-back-build-staging'
TARGET_RUN_CONTAINER = 'spms-run-staging'
echo "[STG Mode] SET STAGING Container"
}
else {
error "This branch(${branchName}) can't set container (USE develop or main, staging branch)"
}
}
}
}

View File

@ -4,9 +4,11 @@
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>1b3e01bb-60ac-40bc-9abf-5cf3a7e35ba2</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BCrypt.Net-Next" Version="4.0.3" />
<PackageReference Include="FirebaseAdmin" Version="3.4.0" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.0"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.11">
@ -15,6 +17,11 @@
</PackageReference>
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="9.0.0" />
<PackageReference Include="RabbitMQ.Client" Version="7.2.0" />
<PackageReference Include="Serilog.AspNetCore" Version="10.0.0" />
</ItemGroup>
<ItemGroup>
<Folder Include="CheckList\" />
</ItemGroup>
</Project>

View File

@ -4,5 +4,23 @@
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"ConnectionStrings": {
"DefaultConnection": ""
},
"JwtSettings": {
"SecretKey": "",
"Issuer": "SPMS",
"Audience": "SPMS",
"ExpiryMinutes": 10,
"RefreshTokenExpiryDays": 7
},
"RabbitMQ": {
"HostName": "",
"Port": 0,
"UserName": "",
"Password": "",
"VirtualHost": "dev"
}
}

View File

@ -5,5 +5,21 @@
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
"AllowedHosts": "*",
"ConnectionStrings": {
"DefaultConnection": ""
},
"JwtSettings": {
"SecretKey": "",
"Issuer": "SPMS",
"Audience": "SPMS",
"ExpiryMinutes": 10
},
"RabbitMQ": {
"HostName": "",
"Port": 0,
"UserName": "",
"Password": "",
"VirtualHost": "/"
}
}