chore/changed-jenkinsfile
Some checks failed
SPMS_API/pipeline/head There was a failure building this commit
Some checks failed
SPMS_API/pipeline/head There was a failure building this commit
1. 젠킨스 파일 변경 2. 패키지 설치
This commit is contained in:
parent
db999a53b8
commit
eddaf5e368
9
Jenkinsfile
vendored
9
Jenkinsfile
vendored
|
|
@ -24,6 +24,15 @@ pipeline {
|
||||||
} else {
|
} else {
|
||||||
error "This branch(${branchName}) can't set container (USE develop or main branch)"
|
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)"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -4,9 +4,11 @@
|
||||||
<TargetFramework>net9.0</TargetFramework>
|
<TargetFramework>net9.0</TargetFramework>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<UserSecretsId>1b3e01bb-60ac-40bc-9abf-5cf3a7e35ba2</UserSecretsId>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<PackageReference Include="BCrypt.Net-Next" Version="4.0.3" />
|
||||||
<PackageReference Include="FirebaseAdmin" Version="3.4.0" />
|
<PackageReference Include="FirebaseAdmin" Version="3.4.0" />
|
||||||
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.0"/>
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.0"/>
|
||||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.11">
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.11">
|
||||||
|
|
@ -15,6 +17,11 @@
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="9.0.0" />
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="9.0.0" />
|
||||||
<PackageReference Include="RabbitMQ.Client" Version="7.2.0" />
|
<PackageReference Include="RabbitMQ.Client" Version="7.2.0" />
|
||||||
|
<PackageReference Include="Serilog.AspNetCore" Version="10.0.0" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<Folder Include="CheckList\" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
||||||
|
|
@ -4,5 +4,23 @@
|
||||||
"Default": "Information",
|
"Default": "Information",
|
||||||
"Microsoft.AspNetCore": "Warning"
|
"Microsoft.AspNetCore": "Warning"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"AllowedHosts": "*",
|
||||||
|
"ConnectionStrings": {
|
||||||
|
"DefaultConnection": ""
|
||||||
|
},
|
||||||
|
"JwtSettings": {
|
||||||
|
"SecretKey": "",
|
||||||
|
"Issuer": "SPMS",
|
||||||
|
"Audience": "SPMS",
|
||||||
|
"ExpiryMinutes": 10,
|
||||||
|
"RefreshTokenExpiryDays": 7
|
||||||
|
},
|
||||||
|
"RabbitMQ": {
|
||||||
|
"HostName": "",
|
||||||
|
"Port": 0,
|
||||||
|
"UserName": "",
|
||||||
|
"Password": "",
|
||||||
|
"VirtualHost": "dev"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -5,5 +5,21 @@
|
||||||
"Microsoft.AspNetCore": "Warning"
|
"Microsoft.AspNetCore": "Warning"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"AllowedHosts": "*"
|
"AllowedHosts": "*",
|
||||||
}
|
"ConnectionStrings": {
|
||||||
|
"DefaultConnection": ""
|
||||||
|
},
|
||||||
|
"JwtSettings": {
|
||||||
|
"SecretKey": "",
|
||||||
|
"Issuer": "SPMS",
|
||||||
|
"Audience": "SPMS",
|
||||||
|
"ExpiryMinutes": 10
|
||||||
|
},
|
||||||
|
"RabbitMQ": {
|
||||||
|
"HostName": "",
|
||||||
|
"Port": 0,
|
||||||
|
"UserName": "",
|
||||||
|
"Password": "",
|
||||||
|
"VirtualHost": "/"
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user