This guide provides detailed, step-by-step instructions on how to use and deploy Upstash Workflows with SolidJS. You can also explore our SolidJS example for a detailed, end-to-end example and best practices.

Prerequisites

  1. An Upstash QStash API key.
  2. Node.js and npm (another package manager) installed.

If you haven’t obtained your QStash API key yet, you can do so by signing up for an Upstash account and navigating to your QStash dashboard.

Step 1: Installation

First, install the QStash SDK in your SolidJS project:

Terminal
npm install @upstash/qstash

Step 2: Configure Environment Variables

Create a .env file in your project root and add your QStash token. This key is used to authenticate your application with the QStash service.

Terminal
touch .env

Open the environment file and add your QStash token:

.env
QSTASH_TOKEN=xxxxxxxxx

Replace xxxxxxxxx with your actual QStash token found here:

Step 3: Create a Workflow Endpoint

A workflow endpoint allows you to define a set of steps that, together, make up a workflow. Each step contains a piece of business logic that is automatically retried on failure, with easy monitoring via our visual workflow dashboard.

To define a workflow endpoint in a SolidJS project, navigate into the SolidJS routes/api directory. Inside this folder, create a workflow.ts file that contains your workflow:

routes/api/workflow.ts
import { serve } from "@upstash/qstash/solidjs"

export const POST = serve(async (context) => {
  await context.run("initial-step", () => {
    console.log("initial step ran")
  })

  await context.run("second-step", () => {
    console.log("second step ran")
  })
})

Step 4: Run the Workflow Endpoint

For QStash, a tool that’s used to run workflows under the hood, you need to provide a live URL for your workflow endpoint. Here’s how to set up your workflow endpoint for local development.

Once you have a live URL, proceeed with either one of the following steps:

Set your publically accessible URL as an environment variable. This variable is only needed for local development and doesn’t need to be set in production:

.env
UPSTASH_WORKFLOW_URL=https://<YOUR_NGROK_OR_TUNNEL_URL>/

Using the baseUrl option

As an alternative to setting an environment variable, you can also use the baseUrl option in the serve method. This option is only needed for local development and can be omitted in production:

routes/api/workflow.ts
import { serve } from "@upstash/qstash/solidjs"

export const POST = serve(
  async (context) => { ... },
  {
    // no /api/workflow, just the base URL
    baseUrl: "https://<YOUR_NGROK_OR_TUNNEL_URL>/",
  }
)

Triggering the workflow

After setting your live URL as the environment variable or baseUrl option, trigger your workflow by first starting your SolidJS app:

Terminal
npm run dev

and then making a POST request to your workflow endpoint. For each workflow run, a unique workflow run ID is returned:

Terminal
curl -X POST https://<YOUR_NGROK_OR_TUNNEL_URL>/api/workflow

# result: {"workflowRunId":"wfr_xxxxxx"}

Use this ID to track the workflow run and see its status in your QStash workflow dashboard. All steps are listed with their statuses, headers, and body for a detailed overview of your workflow from start to finish. Click on a step to see its detailed logs.

Step 5: Deploying to Production

When deploying your SolidJS application with Upstash Workflows to production, there are a few key points to keep in mind:

  1. Environment Variables: Make sure that all necessary environment variables are set in your platforms project settings. For example, your QSTASH_TOKEN and any other configuration variables your workflow might need.

  2. Remove Local Development Settings: In your production code, you can remove or conditionally exclude any local development settings. For example, the baseUrl option in the serve function can be omitted in production:

    routes/api/workflow.ts
    export const POST = serve(
      async (context) => {
        // Your workflow steps
      },
      {
        // Conditionally set in development, but not in production
        // as the baseUrl is automatically set in production
        baseUrl: process.env.NODE_ENV === "development" ? "https://<YOUR_NGROK_OR_TUNNEL_URL>/" : undefined,
      }
    )
    
  3. Deployment: Deploy your SolidJS application to Netlify, Vercel or other platforms as you normally would. These platforms will automatically detect and build your SolidJS application.

  4. Verify Workflow Endpoint: After deployment, verify that your workflow endpoint is accessible by making a POST request to your production URL:

    Terminal
    curl -X POST https://<YOUR-PRODUCTION-URL>/api/workflow
    
  5. Monitor in QStash Dashboard: Use the QStash dashboard to monitor your production workflows. You can track workflow runs, view step statuses, and access detailed logs.

  6. Set Up Alerts: Consider setting up alerts in Sentry or other monitoring tools to be notified of any workflow failures in production.

Next Steps

  1. Learn how to protect your workflow endpoint from unauthorized access by securing your workflow endpoint.

  2. Explore our SolidJS example for a detailed, end-to-end example and best practices.

  3. For setting up and testing your workflows in a local environment, check out our local development guide.