update: 调整默认密码和 Jenkins 部署路径配置

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
qihongkun 2026-05-25 14:54:01 +08:00
parent 18c14f18af
commit 32cfb20999
2 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ QIP_HOST_PORT=8000
QIP_DATA_HOST_DIR=/docker_data
# 生产务必修改
AUTH_TOKEN_SECRET=change-me-to-a-long-random-string
AUTH_TOKEN_SECRET=Sto1234@
DEFAULT_SUPERADMIN_USERNAME=admin
DEFAULT_SUPERADMIN_PASSWORD=Sto1234@
DEFAULT_SUPERADMIN_DISPLAY_NAME=系统超管

4
Jenkinsfile vendored
View File

@ -2,7 +2,7 @@ pipeline {
agent any
environment {
DEPLOY_DIR = '/opt/quality-inspection-platform'
DEPLOY_DIR = '/docker_data/quality-inspection-platform'
SSH_SERVER = '10.20.30.42'
}
@ -41,7 +41,7 @@ pipeline {
sshTransfer(
sourceFiles: '**/*',
excludes: '.git/**, .venv/**, __pycache__/**, node_modules/**, *.pyc, .env',
remoteDirectory: "${DEPLOY_DIR}",
remoteDirectory: "quality-inspection-platform",
removePrefix: '',
cleanRemote: true,
execTimeout: 600000,