-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #96 from gsainfoteam/siwonpada/issue95
[Documentation] lib documentation
- Loading branch information
Showing
8 changed files
with
108 additions
and
0 deletions.
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,30 @@ | ||
# Infoteam idp Module | ||
|
||
인포팀의 idp를 더 쉽게 사용하기 위한 module입니다. | ||
|
||
## Environment | ||
|
||
사용되는 package들은 다음과 같습니다. | ||
|
||
- @nestjs/common | ||
- @nestjs/config | ||
- @nestjs/axios | ||
- rxjs | ||
- axios | ||
|
||
이용하기 위해서 필요한 설정 변수는 다음과 같습니다. | ||
|
||
``` env | ||
IDP_URL=https://api.idp.gistory.me | ||
IDP_CLIENT_ID=yourclientid | ||
IDP_CLIENT_SECRET=yourclientsecret | ||
``` | ||
|
||
위의 설정변수를 보면 알 수 있겠지만, 해당 모듈을 사용하기 위해서는 먼저 infoteam idp에서 client등록을 해야지 사용할 수 있습니다. | ||
|
||
## Function | ||
|
||
기능은 다음과 같습니다. | ||
|
||
- authorization_code를 이용해서 AccessToken으로 돌려받음. | ||
- AccessToken을 이용해서, 해당 유저의 정보들을 돌려받음. |
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 +1,3 @@ | ||
export * from './logger.module'; | ||
export * from './logger.decorator.register'; | ||
export * from './decorator/loggable'; |
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
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,14 @@ | ||
# Logger Module | ||
|
||
logging을 더 편하게 하기 위한 module입니다. | ||
|
||
## Environment | ||
|
||
사용되는 package들은 다음과 같습니다. | ||
|
||
- @nestjs/core | ||
- @nestjs/common | ||
|
||
## Function | ||
|
||
loggable이라는 데코레이터가 붙어있는 class의 함수가 실행시키기 이전, 이후의 함수의 로그를 찍는다. |
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
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,27 @@ | ||
# Object Module | ||
|
||
AWS의 S3를 더 쉽게 조작하기 위해서 사용되는 module입니다. | ||
|
||
## Environment | ||
|
||
사용되는 package들은 다음과 같습니다. | ||
|
||
- @nestjs/common | ||
- @nestjs/config | ||
- @aws-sdk/client-s3 | ||
|
||
이용하기 위해서 필요한 설정 변수는 다음과 같습니다. | ||
|
||
``` env | ||
AWS_S3_REGION=yourbucketregion | ||
AWS_S3_BUCKET=yourbucket | ||
AWS_ACCESS_KEY_ID=xxxxxxxxxx | ||
AWS_SECRET_ACCESS_KEY=xxxxxxx | ||
``` | ||
|
||
## Function | ||
|
||
기능은 다음과 같습니다. | ||
|
||
- AWS S3에 object를 업로드합니다. | ||
- AWS S3에 object를 삭제합니다. |
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,28 @@ | ||
# Prisma Module | ||
|
||
데이터베이스를 조작하기 위한 ORM, prisma를 nestjs의 module화 시킨 module입니다. | ||
|
||
## Environment | ||
|
||
사용되는 package들은 다음과 같습니다. | ||
|
||
- @nestjs/common | ||
- @nestjs/config | ||
- @prisma/client | ||
|
||
dev-package들은 다음과 같습니다. | ||
|
||
- prisma | ||
|
||
이용하기 위해서 필요한 설정 변수는 다음과 같습니다. | ||
|
||
``` env | ||
DATABASE_URL=postgresql://janedoe:mypassword@localhost:5432/mydb | ||
``` | ||
|
||
## Function | ||
|
||
기능은 다음과 같습니다. | ||
|
||
- 모듈이 켜질때, 데이터베이스에 연결함. | ||
- 모듈이 꺼질떄, 데이터베이스에 연결을 해제함. |
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