gpt4 book ai didi

javascript - 如何为 TypeORM 指定 ormconfig.ts?

转载 作者:行者123 更新时间:2023-11-30 07:51:30 24 4
gpt4 key购买 nike

我使用默认带有 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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com