From c52b44c7c030371b79187bab7cafeab5286d48df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=84=8C=E1=85=B5=E1=84=8E=E1=85=A1=E1=86=AB=E1=84=80?= =?UTF-8?q?=E1=85=B2?= Date: Wed, 4 Jan 2023 22:51:48 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20Readme=20=EC=97=85=EB=8D=B0=EC=9D=B4?= =?UTF-8?q?=ED=8A=B8=20(postman=20=EC=9C=A0=EC=A0=80=20=EB=93=B1=EB=A1=9D?= =?UTF-8?q?=20=EC=84=A4=EB=AA=85=20=EC=B6=94=EA=B0=80)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 7 +++++-- app/applications/services/user_services.py | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3cef667..924cbed 100644 --- a/README.md +++ b/README.md @@ -84,8 +84,9 @@ DB는 `MySQL`을 사용하며 비동기 처리를 위해 `aiomysql`라이브러
## 🐳 Docker-Compose 실행 -`.env`파일을 생성한뒤 `docker-compose up -d` 를 실행합니다.
-몇분 후 api, web, db 컨테이너가 모두 실행 된 후 http://127.0.0.1:8080 에 접속하여 동작을 확인합니다.
+`.env_sample`을 참고하여`.env`파일을 생성한 뒤 `docker-compose up -d` 를 실행합니다.
+api, web, db 컨테이너가 모두 실행 된 후 http://127.0.0.1:8080 에 접속하여 동작을 확인합니다.
+❗️주의: 컨테이너가 뜨고 패키지 설치에 시간이 걸릴수 있어서 애플리케이션 실행까지 몇분이 소요 될 수 있습니다. 스크린샷 2023-01-02 오후 10 54 35 @@ -148,6 +149,8 @@ uvicorn app.main:app --port 8080 @EmojiBot --show_user --slack_id=슬랙ID ``` +### 🚀 Postman 으로 유저 등록 예시 +포스트맨 등록 예시
## 🧟‍♂️ 프로세스 Live 체크 (선택) diff --git a/app/applications/services/user_services.py b/app/applications/services/user_services.py index 48fefd5..52059b7 100644 --- a/app/applications/services/user_services.py +++ b/app/applications/services/user_services.py @@ -37,7 +37,7 @@ async def get_all_users(cls) -> List[User]: @classmethod async def create_user(cls, attr: dict): - await cls._user_domain_service.create_user(attr) + return await cls._user_domain_service.create_user(attr) @classmethod async def update_user(cls, attr: dict):