Skip to content

Commit

Permalink
[Fix] blog
Browse files Browse the repository at this point in the history
  • Loading branch information
O-h-y-o committed Feb 16, 2024
1 parent b781697 commit d8cda96
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 1 deletion.
29 changes: 29 additions & 0 deletions src/ko/posts/info/monorepo&ci-cd.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# 모노레포 & Github CI/CD

멀티레포에서는 project repo가 각각 있기때문에 관리와 유지보수에 대한 비용이 늘어나게 됩니다.

모노레포에서는 하나의 레포에 프로젝트들이 있기때문에 통합적인 관리가 가능합니다.

멀티레포는 브랜치가 꼬이거나 하는 일이 적지만, 모노레포에서는 브랜치끼리 꼬이거나 ci/cd의 과정에서 몇 가지 문제가 발생할 수가 있습니다. (조심하지않으면..)

Root
╚ project1
╚ project2
╚ project3

## 자동 Github CI/CD

## 수동 Github CI/CD

### Window

다음 사이트에서 github cli를 설치해주세요.

<a href="https://cli.github.com" target="_blank">https://cli.github.com</a>

그 후 프로젝트 루트에서 `inquirer` 라이브러리를 설치해주세요.
타입스크립트의 경우 `@types/inquirer`를 같이 설치해주세요.

```shell
$ yarn -W add -D inquirer @types/inquirer
```
2 changes: 1 addition & 1 deletion src/ko/posts/vue3+quasar/app-orientation.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 앱 화면 전환 제어하기
# 앱 화면 전환 제어하기

앱을 세로모드에서만 지원하고 싶을때가 있고 가로모드에서만 지원하고 싶을 때가 있습니다.

Expand Down

0 comments on commit d8cda96

Please sign in to comment.