codestates / codestates/quokkaBoard-server
[ ✒️ Dev Log] 박상우 / 2021-06-29
- Dominant language
- TypeScript
- Stars
- 0
- Forks
- 1
- PR merge metrics
- No merged PRs in 30d
Description
### 오늘은 어떻게 프로젝트에 기여했나요?
- 소셜로그인 로직 구현
- type ORM 도입 및 User, Project, UserProject, FollowTable entities 구현
-
### 오늘의 프로젝트에서 힘든 점은 무엇인가요?
- TypeOrm 초기 세팅 중 ormconfig.json attribute 설정이 제대로 되지 않아,
EntityMetadataNotFound err 발생
- 검색 결과, "entities" 의 디렉토리 설정이 잘못되어 계속 에러가 뜨는 것으로 확인
```
{
"type": "mysql",
"host": "127.0.0.1",
"port": 3306,
"username": "root",
"password": "woo1988",
"database": "quokkaBoard",
"synchronize": true,
"logging": false,
"entities": [
"db/entity/*.ts"
],
"migrations": [
"db/migration/*.ts"
],
"subscribers": [
"db/subscriber/*.ts"
],
"cli": {
"entitiesDir": "db/entity",
"migrationsDir": "db/migration",
"subscribersDir": "db/subscriber"
}
}
```
### 내일은 프로젝트에 기여하기 위해 무엇을 해야 하나요?
- [x] UserProject entity test
- [x] 나머지 DB 작성
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.