Skip to content

Files

Latest commit

26b13fd · Jan 8, 2025

History

History

production

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Dec 12, 2022
Nov 3, 2021
Apr 20, 2022
Nov 3, 2021
Jul 6, 2022
Dec 3, 2024
Dec 3, 2024
Jan 24, 2023
Jan 24, 2023
Jul 19, 2023
Jan 8, 2025
Dec 13, 2024

Production

An example of building your Workflow code bundle at build time and giving that prebuilt bundle to the Worker (in order to reduce Worker startup time).

For more production topics, see our Production & Deployment docs page.

Running this sample in development

  1. temporal server start-dev to start Temporal Server.
  2. npm install to install dependencies.
  3. npm run start.watch to start the Worker.
  4. In another shell, npm run workflow to run the Workflow.

The Workflow should return:

Hello, Temporal!

Running this sample in production

  1. npm run build to build the Worker script and Activities code.
  2. npm run build:workflow to build the Workflow code bundle.
  3. NODE_ENV=production node lib/worker.js to run the production Worker.