Tive um erro e estava na configuração do TypeORM informada no curso.
Erro:
Nest] 115209 - 08/21/2023, 3:16:49 PM ERROR [ExceptionsHandler] No metadata for "UserEntity" was found.
EntityMetadataNotFoundError: No metadata for "UserEntity" was found.
Solução:
Antes:
createTypeOrmOptions(): TypeOrmModuleOptions {
(...)
entities: [__dirname + '/**/*.entity{.js,.ts}'],
synchronize: true
}
}
Depois:
createTypeOrmOptions(): TypeOrmModuleOptions {
(...)
entities: [__dirname + '/../**/*.entity{.js,.ts}'],
synchronize: true
}
}