-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
30 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
## 앱 화면 전환 제어하기 | ||
# 앱 화면 전환 제어하기 | ||
|
||
앱을 세로모드에서만 지원하고 싶을때가 있고 가로모드에서만 지원하고 싶을 때가 있습니다. | ||
|
||
|