You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: env_config/README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ This directory contains Python samples that demonstrate how to use the Temporal
4
4
5
5
## Prerequisites
6
6
7
-
To run these samples successfully, you must have a local Temporal development server running. You can start one easily using `temporal server start-dev`.
7
+
To run, first see [README.md](../README.md) for prerequisites.
8
8
9
9
## Configuration File
10
10
@@ -18,14 +18,14 @@ The `config.toml` file defines three profiles for different environments:
18
18
19
19
The following Python scripts demonstrate different ways to load and use these configuration profiles. Each runnable sample highlights a unique feature.
20
20
21
-
### `load_default.py`
21
+
### `load_from_file.py`
22
22
23
23
This sample shows the most common use case: loading the `default` profile from the `config.toml` file.
24
24
25
25
**To run this sample:**
26
26
27
27
```bash
28
-
python3 env_config/load_default.py
28
+
uv run env_config/load_from_file.py
29
29
```
30
30
31
31
### `load_profile.py`
@@ -35,7 +35,7 @@ This sample demonstrates loading the `staging` profile by name (which has an inc
0 commit comments