package.json
nuxt.config.ts
config/.env.{profile}
jenkins> New Item> Freestyle project>
Git
Repository URL> http://~/~.git
Branches to build> */{profile}
Build Steps
Execute Windows batch command
cmd /c d:\~\deploy.bat
deploy.bat (case npm 실행 방식 : dev)
최초 소스 npm run dev 이후
call npx kill-port {profileport}
SET JENKINS_WORK=%WORKSPACE%
SET MYSITE_HOME=D:\~\~
call npm install
call xcopy "%JENKINS_WORK%\*" "%MYSITE_HOME%\*" /e /k /y
deploy.bat (static site 방식 : prod)
SET JENKINS_WORK=%WORKSPACE%
SET MYSITE_HOME=D:\~\mysite
call npm install
npm run generate
call xcopy "%JENKINS_WORK%\.output\public\*" "%MYSITE_HOME%\*" /e /k /y
deploy.bat (static site 방식 : prod) > weblogic
nginx.conf
http > server >
listen 80
server_name localhost
location / {
root html;
index index.html index.htm;
}
location ~/mysite {
root "D:/~/ews-ui";
index index.html;
}
nginx -s reload
http://~/mysite
'Dev-Vue.js' 카테고리의 다른 글
vue3-treeview filtered tree (0) | 2024.07.31 |
---|---|
pm2 vuejs nuxt3 jenkins 무중단 배포 (0) | 2023.09.12 |
vuejs's nuxt baseURL for base app path likely nginx route context path (0) | 2023.09.06 |