일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- github action #tistory
- JavaScript
- localstorage
- browserstorage
- Yarn
- PersistentVolumeClaim
- MongoDB
- vuetify3
- 라우터 #NAT #포트 #포트포워딩 #유동고정아이피 #DHCP
- 인터넷 #클라이언트 #서버 #포트 #ipadress #domainname
- vuejs
- OpenLayers
- javascript #컴파일 #인터프리터
- vue #vue-router
- vuejs #pinia #vuetify3
- javascript #localstorage #stringify #parse
- vue3
- basepath
- vworld
- react
- nextjs
- MPA
- kubernetes
- PersistentVolume
- postman
- CKEditor4
- sesstionstorage
- 맥 #나스 #SMA
- v-combobox
- mixedcontent
- Today
- Total
목록git,github,yarn (3)
月亮
원래 메인 브랜치인 master 브랜치에 내가 deploy 브랜치에서 작성한 커밋 한 개를 추가 할 일이 생겼다. 1. github or gitlab or gittea에서 commit hash 확인하기! 복사! 2. commit을 받으려는 브랜치(나의 경우에는 master branch에서)에서 명령어 입력 git cherry-pick 커밋 해시 더보기 i wanna deploy branch in commit hash move to master branch. firstly, you are check in github or gitlab or gitrea in commit hash! and copy it! finaily, you write 명령어 . like that git cherry-pick [commit..
나는 vuetify3를 업데이트하려 했는데, Package.json과 yarn.lock이 동기화되지 않는 문제를 발견했다. 항상 프로젝트를 파악할때 package.json을 보기 때문에 이 동기화 작업이 필요했다. 1. 패키지 지정 업데이트 yarn upgrade vuetify@^3.1.10 2. yarn.lock 파일 변경됨 3. package.json 동기화 # syncyarnlock 설치 $ yarn global add syncyarnlock # yarn.lock에서 설치된 버전으로 package.json을 업데이트 $ syncyarnlock -s -k # package.json의 현재 버전 제약 조건으로 yarn.lock을 업데이트 $ yarn install 출저 https://jhyeok.com..
Tistory와 Github 연동 1. Tistory RSS 설정 - 블로그 설정 - 블로그 - 기타설정 - RSS 전체공개 2. 확인 : 블로그/rss ex) https://yueliang-front-end.tistory.com/rss 3. Github Action으로 자동화하기 1). commit 할 repository 생성하기! 2). 로컬에 생성한 repository clone하기 3). npm init -y 4). rss-parser 설치 npm i rss-parser 5). package.json에 추가 "main": "index.js", "type": "module", "scripts": { "start": "node index.js" }, 6). 루트에 index.js 생성, 입력 impo..