Skip to content

Working with Triggers

Before you start testing Triggers

  • download ngrok
  • open terminal and type ngrok http http://127.0.0.1:9555
  • copy the first address under Forwarding ngork example

If you are on Intellij

  • open bytechef code

  • go to bytechef/server/apps/server-app/src/main/resources/config , create a file called application-local.yml (Pay attention that application-local.yml is optional, git ignored file, and corresponds to local spring profile. This one shouldn’t miss activating local profile on springBoot startup)

  • it is important to add local to active profiles in configuration intellij_scr

  • paste this code in application-local.yml:

bytechef:
webhook-url: (first address under Forwarding)/webhooks/{id}
  • run Bytechef

If you are not on Intellij

  • paste this code in shell:
export BYTECHEF_WEBHOOK_URL=(first address under Forwarding)/webhooks/{id}
  • run Bytechef