Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BE] feature #14, #46 - SSE적용, DB repository 생성 #47

Merged
merged 24 commits into from
Nov 11, 2024
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
5bf9bca
feat: upbit api websocket 연결 및 sse 설정
SeongHyeon0409 Nov 9, 2024
7d9274c
Merge branch 'dev-be' of https://github.com/boostcampwm-2024/web03-Co…
SeongHyeon0409 Nov 11, 2024
ba0e1a6
feat: 코인 정보 upbit api로 받아오기
SeongHyeon0409 Nov 11, 2024
f1b0899
feat: sse service 분리
SeongHyeon0409 Nov 11, 2024
78d154c
feat: coinTickerDTO
SeongHyeon0409 Nov 11, 2024
6f58c58
chore: 배포용 commit
SeongHyeon0409 Nov 11, 2024
8593280
feat : erd에 따른 module생성
SeongHyeon0409 Nov 11, 2024
6e15eaa
feat: SSE 구조 리팩토링
SeongHyeon0409 Nov 11, 2024
030b784
chore: 배포 설정 수정
SeongHyeon0409 Nov 11, 2024
3e6df26
feat: erd table entity 구현
SeongHyeon0409 Nov 11, 2024
ada8814
chore: 불필요한 파일삭제, 배포yml 수정
SeongHyeon0409 Nov 11, 2024
1cbd9ea
feat: https 테스트
SeungGwan123 Nov 8, 2024
8b5a6b1
feat: healthmodule추가
SeungGwan123 Nov 8, 2024
361d205
feat: cicd branch 수정
SeungGwan123 Nov 11, 2024
ca044c2
feat: 코인 정보 upbit api로 받아오기
SeongHyeon0409 Nov 11, 2024
83b7fa8
feat: sse service 분리
SeongHyeon0409 Nov 11, 2024
daa6e2e
feat: coinTickerDTO
SeongHyeon0409 Nov 11, 2024
3a91264
chore: 배포용 commit
SeongHyeon0409 Nov 11, 2024
8b704b1
feat : erd에 따른 module생성
SeongHyeon0409 Nov 11, 2024
4e95102
feat: SSE 구조 리팩토링
SeongHyeon0409 Nov 11, 2024
dc255ce
chore: 배포 설정 수정
SeongHyeon0409 Nov 11, 2024
bce4c07
feat: erd table entity 구현
SeongHyeon0409 Nov 11, 2024
d9fd208
chore: 불필요한 파일삭제, 배포yml 수정
SeongHyeon0409 Nov 11, 2024
aad5887
Merge branch 'feature-be-#46' of https://github.com/boostcampwm-2024/…
SeongHyeon0409 Nov 11, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat : erd에 따른 module생성
SeongHyeon0409 committed Nov 11, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 859328095ea611da05310dfee3354c04515d2e8c
2 changes: 1 addition & 1 deletion dockerfile-client
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ RUN yarn build
FROM nginx:alpine
COPY --from=build /app/dist /usr/share/nginx/html

COPY nginx.conf /etc/nginx/conf.d/default.conf
#COPY nginx.conf /etc/nginx/conf.d/default.conf

EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]
Empty file.
4 changes: 4 additions & 0 deletions packages/server/src/account/account.module.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { Module } from '@nestjs/common';

@Module({})
export class AccountModule {}
Empty file.
Empty file.
4 changes: 4 additions & 0 deletions packages/server/src/asset/asset.module.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { Module } from '@nestjs/common';

@Module({})
export class AssetModule {}
Empty file.
4 changes: 4 additions & 0 deletions packages/server/src/trade/trade.module.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { Module } from '@nestjs/common';

@Module({})
export class TradeModule {}
4 changes: 4 additions & 0 deletions packages/server/src/tradehistory/tradehistory.module.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { Module } from '@nestjs/common';

@Module({})
export class TradehistoryModule {}