Skip to content

Commit

Permalink
fix(video-conferencing-service): add more exports (#221)
Browse files Browse the repository at this point in the history
  • Loading branch information
akshatdubeysf authored May 31, 2021
1 parent b12ce80 commit 3fe4154
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 16 deletions.
20 changes: 4 additions & 16 deletions DEVELOPING.md
Original file line number Diff line number Diff line change
Expand Up @@ -234,19 +234,7 @@ this.component(CoreComponent);
this.sequence(ServiceSequence);
```

10. **Add Rakuten core** - Add rakuten-core as dependency to the module

```sh
lerna add rakuten-core --scope={service name}
```

In application.ts,

```ts
this.component(RakutenCoreComponent);
```

11. **Bearer Verifier** - Add bearer verifier to your service
10. **Bearer Verifier** - Add bearer verifier to your service

```sh
lerna add loopback4-authentication --scope={service name}
Expand Down Expand Up @@ -288,7 +276,7 @@ Add below to application.ts

Use BearerVerifierType.facade for facades.

12. **Setup project for test coverage** -
11. **Setup project for test coverage** -

Create a file named .nycrc and copy this data in it

Expand All @@ -313,8 +301,8 @@ Use BearerVerifierType.facade for facades.
"coverage": "nyc npm run test",
```

13. **Setup sequence** - Remove auto-generated sequence.ts and change to ServiceSequence in application.ts.
14. **Fix api explorer** - Update base path in index.html for facades.
12. **Setup sequence** - Remove auto-generated sequence.ts and change to ServiceSequence in application.ts.
13. **Fix api explorer** - Update base path in index.html for facades.

```html
<body>
Expand Down
3 changes: 3 additions & 0 deletions services/video-conferencing-service/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@ export * from './providers';
export * from './keys';
export * from './types';
export * from './models';
export * from './controllers';
export * from './enums';
export * from './repositories';

0 comments on commit 3fe4154

Please sign in to comment.