Skip to content

Commit 8f7011b

Browse files
authored
Merge pull request #141 from ChooseTale/dev
Dev
2 parents df168cd + dee3dd1 commit 8f7011b

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

prod.dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ ENV NODE_ENV=production
2727

2828
COPY scripts/server-start.sh ./server-start.sh
2929

30+
COPY .env ./
31+
3032
RUN chmod +x ./server-start.sh
3133

3234
CMD ["./server-start.sh"]

src/user/application/user.controller.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ export class UserController {
4747
async getMe(@Req() request: any): Promise<MeResDto> {
4848
const userId = request.user.id;
4949
const meEntity = await this.getMeUsecase.execute(userId);
50-
console.log(meEntity);
5150
return meEntity;
5251
}
5352

0 commit comments

Comments
 (0)