注册证自动发布预先配置
parent
93bd2d92f2
commit
37f893f27e
|
@ -1,34 +0,0 @@
|
||||||
{
|
|
||||||
"Logging": {
|
|
||||||
"LogLevel": {
|
|
||||||
"Default": "Information",
|
|
||||||
"Microsoft": "Warning",
|
|
||||||
"Microsoft.Hosting.Lifetime": "Information"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"ConnectionStrings": {
|
|
||||||
//"RemoteNew": "Server=123.56.94.154,1433\\MSSQLSERVER;Database=IRaCIS_Certificate;User ID=sa;Password=dev123456DEV;TrustServerCertificate=true",
|
|
||||||
//"Hangfire": "Server=123.56.94.154,1433\\MSSQLSERVER;Database=Hangfire_IRaCIS;User ID=sa;Password=dev123456DEV;TrustServerCertificate=true"
|
|
||||||
"RemoteNew": "Server=192.168.1.11\\WCH; Database=IRaCIS; User ID=sa; Password=123456;TrustServerCertificate=true"
|
|
||||||
|
|
||||||
},
|
|
||||||
"BasicSystemConfig": {
|
|
||||||
|
|
||||||
"OpenUserComplexPassword": false,
|
|
||||||
|
|
||||||
"OpenSignDocumentBeforeWork": false,
|
|
||||||
|
|
||||||
"OpenTrialRelationDelete": true,
|
|
||||||
|
|
||||||
"OpenLoginLimit": false
|
|
||||||
},
|
|
||||||
|
|
||||||
"SystemEmailSendConfig": {
|
|
||||||
"Port": 465,
|
|
||||||
"Host": "smtp.qiye.aliyun.com",
|
|
||||||
"FromEmail": "test@extimaging.com",
|
|
||||||
"FromName": "Test_IRC",
|
|
||||||
"AuthorizationCode": "SHzyyl2021"
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,39 +0,0 @@
|
||||||
{
|
|
||||||
"Logging": {
|
|
||||||
"LogLevel": {
|
|
||||||
"Default": "Information",
|
|
||||||
"Microsoft": "Warning",
|
|
||||||
"Microsoft.Hosting.Lifetime": "Information"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
//"RootUrl": "http://123.56.181.144:8060/",
|
|
||||||
"ConnectionStrings": {
|
|
||||||
"RemoteNew": "Server=123.56.94.154,1433\\SQLEXPRESS;Database=IRaCIS_Pre_Production;User ID=sa;Password=dev123456DEV;TrustServerCertificate=true",
|
|
||||||
"Hangfire": "Server=123.56.94.154,1433\\SQLEXPRESS;Database=Hangfire_IRaCIS;User ID=sa;Password=dev123456DEV;TrustServerCertificate=true"
|
|
||||||
},
|
|
||||||
"BasicSystemConfig": {
|
|
||||||
|
|
||||||
"OpenUserComplexPassword": true,
|
|
||||||
|
|
||||||
"OpenSignDocumentBeforeWork": true,
|
|
||||||
|
|
||||||
"OpenLoginLimit": true
|
|
||||||
},
|
|
||||||
//"SystemEmailSendConfig": {
|
|
||||||
// "Port": 465,
|
|
||||||
// "Host": "smtp.163.com",
|
|
||||||
// "FromEmail": "zhou941003@qq.com",
|
|
||||||
// "FromName": "hangZhou",
|
|
||||||
// "AuthorizationCode": "sqfhlpfdvnexbcab"
|
|
||||||
//}
|
|
||||||
|
|
||||||
"SystemEmailSendConfig": {
|
|
||||||
"Port": 465,
|
|
||||||
"Host": "smtp.qiye.aliyun.com",
|
|
||||||
"FromEmail": "IRC@extimaging.com",
|
|
||||||
"FromName": "IRC",
|
|
||||||
"AuthorizationCode": "ExtImg@2022"
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
|
@ -0,0 +1,72 @@
|
||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: irc-netcore-api
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: docker-build
|
||||||
|
image: docker
|
||||||
|
pull: if-not-exists
|
||||||
|
volumes:
|
||||||
|
- name: dockersock
|
||||||
|
path: /var/run/docker.sock
|
||||||
|
- name: cached_nuget_packages
|
||||||
|
path: /drone/nuget_packages
|
||||||
|
commands:
|
||||||
|
- date +%H:%M:%S
|
||||||
|
- pwd
|
||||||
|
- docker build -t Test.Study .
|
||||||
|
- date +%H:%M:%S
|
||||||
|
|
||||||
|
- name: docker-deploy
|
||||||
|
image: docker
|
||||||
|
pull: if-not-exists
|
||||||
|
depends_on:
|
||||||
|
- docker-build
|
||||||
|
volumes:
|
||||||
|
- name: dockersock
|
||||||
|
path: /var/run/docker.sock
|
||||||
|
commands:
|
||||||
|
- date +%H:%M:%S
|
||||||
|
- docker rm -f test-study-container
|
||||||
|
- docker run -itd -e TZ=Asia/Shanghai -e ASPNETCORE_ENVIRONMENT=Test_Study --restart=always --name test-study-container -p 8030:80 Test.Study
|
||||||
|
- date +%H:%M:%S
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
- name: cached_nuget_packages
|
||||||
|
host:
|
||||||
|
path: /mnt/f/docker_publish/nuget_packages
|
||||||
|
- name: dockersock
|
||||||
|
host:
|
||||||
|
path: /var/run/docker.sock
|
||||||
|
|
||||||
|
trigger:
|
||||||
|
branch:
|
||||||
|
- master
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
kind: pipeline
|
||||||
|
type: ssh
|
||||||
|
name: ssh-windows-publish
|
||||||
|
|
||||||
|
platform:
|
||||||
|
os: windows
|
||||||
|
arch: amd64
|
||||||
|
|
||||||
|
clone:
|
||||||
|
disable: true #禁用默认克隆
|
||||||
|
|
||||||
|
server:
|
||||||
|
host: 123.56.94.154
|
||||||
|
user: Administrator
|
||||||
|
password: WHxckj2019
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: publish-test-EIImageViewer
|
||||||
|
commands:
|
||||||
|
- Start-Process "C:\CICD\Test.EIImageViewer\netcore_Publish.bat" -Wait
|
||||||
|
|
||||||
|
trigger:
|
||||||
|
branch:
|
||||||
|
- Test.EIImageViewer
|
Loading…
Reference in New Issue