1. choco install minikube 2. minikube start
1. orphan branch를 생성 2. master branch를 삭제 3. orphan branch를 master branch로 이름 변경 아래 명령어를 차례대로 입력하면 됨. git commit -m "message" git checkout --orphan new-branch git add --all git commit -m "Initial Commit" git branch -D master git branch -m master git push -f origin master 출처: https://medium.com/@debshish.pal/delete-entire-commit-history-of-a-git-repository-86e25602e4ef
1. DndTest import * as React from "react"; import { DragDropContext, Droppable } from "react-beautiful-dnd"; import * as mobx from "mobx"; import { observer } from "mobx-react"; import DraggableInternal from "./DraggableInternal"; import "./App.css"; import Button from "../../components/common/Button"; import { Fragment } from "react"; @observer class DndTest extends React.Component { @mobx.obse..
repository에서 dependency 파일을 다운로드 할때, 주기를 설정할수 있다. always - always check when Maven is started for newer versions of snapshots never - never check for newer remote versions. Once off manual updates can be performed. daily (default) - check on the first run of the day (local time) interval:XXX - check every XXX minutes 출처: https://stackoverflow.com/questions/3805329/how-does-the-updatepolicy-in-ma..
1. on: {} 키워드를 사용해서 on 조건을 명시해 줄수 있음.(jpa에서 @JoinColums와 비슷..) let list = await this.findAll({ where: where, limit: parseInt(w.limit || 10), offset: parseInt(w.offset || 0), include: [ { model: db.productSupplier, on: { prodId: db.sequelize.where(db.sequelize.col('price.prodId'), '=', db.sequelize.col('productSupplier.prodId')), suplrId: db.sequelize.where(db.sequelize.col('price.suplrId'), '=',..