Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 26 additions & 1 deletion postgres/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,29 @@ This starter is a template for a Next.js project that uses Workflow DevKit with

The postgres world is incompatible with Vercel deployments (on Vercel, workflow deployments are automatically configured to use the Vercel World with zero configuration).

Coming soon: instructions on deploying workflows using the Postgres World off-Vercel.
### Deploy on Railway
Copy link

Copilot AI Apr 12, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

### Deploy on Railway is at the same heading level as ### Production Deployment, which makes the hierarchy confusing (it reads as a sibling section rather than a subsection). Consider making Deploy on Railway a level deeper (e.g., ####) so it clearly nests under Production Deployment.

Suggested change
### Deploy on Railway
#### Deploy on Railway

Copilot uses AI. Check for mistakes.

[![Deploy on Railway](https://railway.com/button.svg)](https://railway.com/deploy/workflow-devkit?utm_campaign=workflow-devkit)

This example is also available as a Railway template that deploys:

- the `postgres` demo app
- a PostgreSQL database for the Postgres World
- a separate observability deployment for inspecting runs

After deploying the template, trigger a workflow run against your app deployment:

```bash
curl -X POST \
-H 'content-type: application/json' \
--data '{"email":"your-test@example.com"}' \
https://YOUR-APP-URL/api/signup
```

You should get back:

```json
{"message":"User signup workflow started"}
```

Then open your observability deployment URL to watch the run progress and confirm that it completes successfully.