作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用默认带有 ormconfig.json 的 TypeORM CLI 创建了一个示例 TypeORM 项目:
{
"type": "postgres",
"host": "localhost",
"port": 5432,
"username": "postgres",
"password": "postgres",
"database": "test",
"synchronize": false,
"entities": [
"src/entity/**/*.ts"
],
"migrations": [
"database/migrations/**/*.ts"
],
"subscribers": [
"src/subscriber/**/*.ts"
],
"cli": {
"entitiesDir": "src/entity",
"migrationsDir": "database/migrations",
"subscribersDir": "src/subscriber"
}
}
这是目录结构:
-database
-migrations
-src
-entity
-ormconfig.json
这会在 database/migrations 文件夹中正确创建迁移,并从中执行迁移。
我用以下 ormconfig.ts 替换了 ormconfig.json :
export default {
type: 'postgres',
host: 'localhost',
port: 5432,
username: 'postgres',
password: 'postgres',
database: 'test',
synchronize: false,
"entities": [
"src/entity/**/*.ts"
],
"migrations": [
"database/migrations/**/*.ts"
],
"subscribers": [
"src/subscriber/**/*.ts"
],
"cli": {
"entitiesDir": "src/entity",
"migrationsDir": "database/migrations",
"subscribersDir": "src/subscriber"
}
};
然而,这会在根目录而不是在数据库/迁移中创建迁移。
谁能帮我弄清楚这里缺少什么,以及我如何使用 ormconfig.ts 在目标目录内生成迁移?
最佳答案
嘿,我来聊聊,因为我可以向你提出解决方案。
您可以将以下行放入您的 package.json
文件中:
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js --config server/environments/database.ts",
并且您的 ts 配置必须通过这样做直接导出配置:
export = { /* your config */ };
如您所见,您还可以指定配置的路径。您的配置无需位于项目的根级别。
希望对你有帮助
关于javascript - 如何为 TypeORM 指定 ormconfig.ts?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52187328/
我是一名优秀的程序员,十分优秀!