-
[final project] client / server 초기 개발 환경 세팅 에러(typeORM)error handling 2022. 4. 21. 09:34반응형
npx typeorm init --name MyProject --database mysql
typeORM을 설치하던 도중 저 명령어를 치면 다른 파일들과 함께 ormconfig.json 파일이 생성되는데
나같은 경우에 생성이 되지 않고 src/data-source.ts 파일에 비슷한 내용이 있었다.그래서 data-source.ts는 삭제하고 ormconfig.json 파일을 src/ 에 설치해주고 아래 내용을 넣어준다!
export default { type: "mysql", host: 환경변수, port: 환경변수, username: 환경변수, password: 환경변수, database: 환경변수, synchronize: true, logging: false, entities: ["src/entity/**/*.ts"], migrations: ["src/migration/**/*.ts"], subscribers: ["src/subscriber/**/*.ts"], cli: { entitiesDir: "src/entity", migrationsDir: "src/migration", subscribersDir: "src/subscriber", }, };
반응형'error handling' 카테고리의 다른 글
[final project] TypeOrm에서 req.params 컴파일 오류 & typeorm-seeding 설치 오류 (0) 2022.04.23 [final project] typescript & typeorm / isAuthorized import 에러 (0) 2022.04.22 [final project] typescript를 이용한 react 프로젝트 설치 시 에러 (0) 2022.04.20 배포 단계에서 발견한 에러(This XML file does not appear...) (0) 2022.04.18 [ERROR] You are running `create-react-app` 4.0.3, which is behind the latest release (0) 2022.03.25