wolrajhti

Results 2 comments of wolrajhti

Install loopback/rest package for all services with `npm install @loopback/rest --save` then replace `import { api } from '@loopback/core';` by `import { api } from '@loopback/rest';` and it should work

I solved this by adding the following in "services/facade/index.ts" at line 9 : `const app = this; app.bind('http.port').to(3004);` it seems to work but I don't understand next steps. It seems...