Skip to content

Commit

Permalink
Merge pull request #2 from youngxpepp/develop-changhee
Browse files Browse the repository at this point in the history
TypeOrm 설정 추가 & 도메인 모델 추가
  • Loading branch information
changheedev authored Aug 7, 2020
2 parents 831c43c + c40b949 commit ff9d1fe
Show file tree
Hide file tree
Showing 7 changed files with 741 additions and 68 deletions.
19 changes: 19 additions & 0 deletions server/ormconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"type": "mysql",
"host": "localhost",
"port": 3306,
"username": "relay11",
"password": "123123",
"database": "relay11db",
"synchronize": true,
"logging": true,
"entities": [
"**/model/*.ts"
],
"migrations": [
"src/migration/**/*.ts"
],
"subscribers": [
"src/subscriber/**/*.ts"
]
}
Loading

0 comments on commit ff9d1fe

Please sign in to comment.