Skip to content

Commit 4f0e88d

Browse files
authored
Update links to match new dev guide structure (#281)
1 parent eeb42cb commit 4f0e88d

File tree

11 files changed

+12
-12
lines changed

11 files changed

+12
-12
lines changed

activities-dependency-injection/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Activities Dependency Injection
22

3-
This sample shows how to [share dependencies](https://docs.temporal.io/application-development/foundations?lang=typescript/#develop-activities) between Activities: for example, when you need to initialize a database connection once and then pass it to multiple Activities.
3+
This sample shows how to [share dependencies](https://docs.temporal.io/dev-guide/typescript/foundations#share-dependencies-in-activity-functions-dependency-injection) between Activities: for example, when you need to initialize a database connection once and then pass it to multiple Activities.
44

55
[`src/worker.ts`](./src/worker.ts)
66

child-workflows/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Child Workflows
22

3-
This sample shows how to use [Child Workflows](https://docs.temporal.io/application-development/features/#child-workflows):
3+
This sample shows how to use [Child Workflows](https://docs.temporal.io/dev-guide/typescript/features#child-workflows):
44

55
[`src/workflows.ts`](./src/workflows.ts)
66

continue-as-new/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Continue as New
22

3-
This sample demonstrates the [continueAsNew API](https://docs.temporal.io/application-development/features/#continue-as-new). We still need to make these examples more relatable and realistic. If you are planning to write an infinitely long-running Workflow, please get in touch to validate the design and cutoff points.
3+
This sample demonstrates the [continueAsNew API](https://docs.temporal.io/dev-guide/typescript/features#continue-as-new). We still need to make these examples more relatable and realistic. If you are planning to write an infinitely long-running Workflow, please get in touch to validate the design and cutoff points.
44

55
### Running this sample
66

instrumentation/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This project demonstrates how to add a [winston](https://github.com/winstonjs/winston) logger to your project and get metrics, logs and traces out of the SDK.
44

5-
The [Logging docs](https://docs.temporal.io/application-development/observability/#logging) and [Core docs](https://docs.temporal.io/clusters/#monitoring-and-observation) explain some of the code in this sample.
5+
The [Logging docs](https://docs.temporal.io/dev-guide/typescript/observability#logging) and [Core docs](https://docs.temporal.io/clusters/#monitoring-and-observation) explain some of the code in this sample.
66

77
See the [opentelemetry interceptors sample](../interceptors-opentelemetry) for adding tracing to your own Activities and Workflows.
88

logger-shared/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ You should not use winston directly in Workflow code.
66
The only potential exception is if you are only using winston's [Console transport](https://github.com/winstonjs/winston/blob/master/docs/transports.md#console-transport).
77
That is because Workflow code runs in a sandbox, so transports that [write to the file system](https://github.com/winstonjs/winston/blob/master/docs/transports.md#file-transport) or [make HTTP requests](https://github.com/winstonjs/winston/blob/master/docs/transports.md#http-transport) will not work.
88

9-
The [Logging docs](https://docs.temporal.io/application-development/observability/#logging) explain some of the code in this sample.
9+
The [Logging docs](https://docs.temporal.io/dev-guide/typescript/observability#logging) explain some of the code in this sample.
1010

1111
This sample is similar to the [instrumentation sample](../instrumentation/README.md).
1212
The key difference is the instrumentation sample doesn't use the logger directly from Workflow logic.

production/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Production
22

3-
An example of building your Workflow code bundle at build time and giving that [prebuilt bundle](https://docs.temporal.io/application-development/foundations?lang=typescript#register-types) to the Worker (in order to reduce Worker startup time).
3+
An example of building your Workflow code bundle at build time and giving that [prebuilt bundle](https://docs.temporal.io/dev-guide/typescript/foundations#prebuilt-workflow-bundles) to the Worker (in order to reduce Worker startup time).
44

55
- Worker code: [`src/worker.ts`](./src/worker.ts)
66
- Workflow build script: [`src/scripts/build-workflow-bundle.ts`](./src/scripts/build-workflow-bundle.ts)

protobufs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Protobufs
22

3-
Use [Protobufs](https://docs.temporal.io/application-development/observability?lang=typescript#tracing).
3+
Use [Protobufs](https://docs.temporal.io/dev-guide/typescript/features#protobufs).
44

55
- Example proto files:
66
- [protos/messages.proto](protos/messages.proto)

query-subscriptions/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Query Subscriptions
22

33
Demo using [Redis Streams](https://redis.io/topics/streams-intro), [Immer](https://github.com/immerjs/immer),
4-
and [SDK Interceptors](https://docs.temporal.io/application-development/observability/#tracing) to build a subscribable query mechanism for Workflow state.
4+
and [SDK Interceptors](https://docs.temporal.io/dev-guide/typescript/features#interceptors) to build a subscribable query mechanism for Workflow state.
55

66
This is an advanced sample that requires knowledge of SDK internals. There's a lot going on "behind the scenes" in [`subscriptions.ts`](./src/workflows/subscriptions.ts).
77
It is far simpler to manually publish updates from Workflow code but we put the sample here to show off some of the advanced capabilities provided by the runtime.

saga/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ as reversals of successful calls to that point. Note that compensation is done i
1212

1313
### Running this sample
1414

15-
1. Either use Temporal Cloud with environment variables specified [here](https://docs.temporal.io/security/#encryption-in-transit-with-mtls) or make sure Temporal Server is running locally (see the [quick install guide](https://docs.temporal.io/application-development/foundations#run-a-development-cluster)) and add `LOCAL=true`.
15+
1. Either use Temporal Cloud with environment variables specified [here](https://docs.temporal.io/security/#encryption-in-transit-with-mtls) or make sure Temporal Server is running locally (see the [quick install guide](https://docs.temporal.io/dev-guide/typescript/foundations#run-a-development-server)) and add `LOCAL=true`.
1616
1. `npm install` to install dependencies.
1717
1. `LOCAL=true npm run start` to start the Worker.
1818
1. In another shell, `LOCAL=true npm run workflow` to run the Workflow.

search-attributes/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Search Attributes
22

3-
> Background: [Search Attribute docs](https://docs.temporal.io/application-development/observability/?lang=ts#visibility)
3+
> Background: [Search Attribute docs](https://docs.temporal.io/dev-guide/typescript/observability#visibility)
44
55
### Adding to Server
66

@@ -13,7 +13,7 @@ This runs [`src/client-operator-service.ts`](./src/client-operator-service.ts),
1313
### Adding to Workflow and using
1414

1515
- Client: [`src/client.ts`](./src/client.ts)
16-
- Add [custom search attributes](https://docs.temporal.io/application-development/observability/#search-attributes) to your Workflow Executions on start
16+
- Add [custom search attributes](https://docs.temporal.io/dev-guide/typescript/observability#custom-search-attributes) to your Workflow Executions on start
1717
- Use `describe()` to read search attributes
1818
- Workflow: [`src/workflows.ts`](./src/workflows.ts)
1919
- Read search attributes from `WorkflowInfo`

sinks/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This project demonstrates the Sinks API for alerting.
44

5-
The [Logging docs](https://docs.temporal.io/application-development/observability/#logging) explains some of the code in this sample.
5+
The [Logging docs](https://docs.temporal.io/dev-guide/typescript/observability#logging) explains some of the code in this sample.
66

77
### Running this sample
88

0 commit comments

Comments
 (0)