Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update workers.mdx with valid "quickstart" link #1151

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
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
2 changes: 1 addition & 1 deletion frontend/docs/pages/home/basics/workers.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ In the above examples:
2. We register the workflow(s) that the worker is capable of executing using the `registerWorkflow` method.
3. Finally, we start the worker process using the `start` method, allowing it to begin listening for tasks from the Hatchet engine.

Run your worker process from command line with relevant environment variables set. Refer to the [quick start](https://docs.hatchet.run/home/quickstart/first-workflow) for more details on how to set up your worker.
Run your worker process from command line with relevant environment variables set. Refer to the [quick start](https://docs.hatchet.run/self-hosting) for more details on how to set up your worker.
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
Run your worker process from command line with relevant environment variables set. Refer to the [quick start](https://docs.hatchet.run/self-hosting) for more details on how to set up your worker.
Run your worker process from command line with relevant environment variables set. Refer to the following SDK guides for more details on how to set up your worker:
- [Python SDK](https://docs.hatchet.run/sdks/python-sdk/worker)
- [Typescript SDK](https://docs.hatchet.run/sdks/typescript-sdk/worker)
- [Go SDK](https://docs.hatchet.run/sdks/go-sdk/creating-a-worker)

I don't think /self-hosting is the best link here, but these should work well!


## Best Practices for Managing Workers

Expand Down