Skip to main content
Version: 2.1.0

Overview

This section provides instruction on how to develop custom activities.

Prerequisites

You need to have WFE module installed and configured on your local machine to develop activity. If you don't have it, please refer to Quickstart Guide.

important

You need db accessible to insert a new activity entry in the database and temporal api accessible to execute activities.

For Activity development, make sure you have database and temporal api accessible from your local machine. To port forward them, configure compose.override.yml file with below example.

name: aoh
services:
wfe-db:
ports:
- 5432:5432
temporal:
ports:
- 7233:7233