使用环境文件的NestJs TypeORM配置

时间:2019-01-25 08:42:31

标签: javascript node.js typescript nestjs typeorm

我有两个.env文件,例如dev.envstaging.env。我正在使用typeorm作为我的数据库ORM。我想知道每当我运行应用程序时如何让typeorm读取其中一个配置文件。 Error: No connection options were found in any of configurations file来自typeormmodule。

1 个答案:

答案 0 :(得分:2)

您可以创建一个ConfigService来读取与环境变量NODE_ENV相对应的文件:

1)在启动脚本中设置NODE_ENV变量:

"start:dev": "cross-env NODE_ENV=dev ts-node -r tsconfig-paths/register src/main.ts",
"start:staging": "cross-env NODE_ENV=staging node dist/src/main.js",

2)在ConfigService中读取相应的.env文件

@Injectable()
export class ConfigService {
  private readonly envConfig: EnvConfig;

  constructor() {
    this.envConfig = dotenv.parse(fs.readFileSync(`${process.env.NODE_ENV}.env`));
  }

  get databaseHost(): string {
    return this.envConfig.DATABASE_HOST;
  }
}

3)使用ConfigService设置数据库连接:

TypeOrmModule.forRootAsync({
  imports:[ConfigModule],
  useFactory: async (configService: ConfigService) => ({
    type: configService.getDatabase()
    // ...
  }),
  inject: [ConfigService]
}),