Hey every body,hope you all are doing great!!
How can I connect camunda 7 to my NestJS application?
I already made this connection possible with camunda 8 but I wish to do that with Camunda 7, since our BPMN flows were imported from Bizagi and only works in Camunda 7.
So far I am using this GitHub - camunda-community-hub/nestjs-zeebe: Zeebe transport and client for nestjs framework but it only works for localhost:26500 if I try to pass the localhost:8080/engine-rest it wont work.
I get the following error:
| zeebe | ERROR: [createProcessInstance]: 14 UNAVAILABLE: Connection dropped
And my app.module.ts looks like this:
import { Module } from '@nestjs/common';
import { ZeebeModule, ZeebeServer } from 'nestjs-zeebe';
import { AppController } from './app.controller';
import { AppService } from './app.service';
@Module({
imports: [ZeebeModule.forRoot({ gatewayAddress: 'localhost:8080/engine-rest' })],
controllers: [AppController],
providers: [AppService, ZeebeServer],
})
export class AppModule { }
Would appreciate your help, thanks!