Skip to content

Commit 05889b6

Browse files
committed
Update OpenClaw LP1 timezone guidance
1 parent 50eb8a3 commit 05889b6

2 files changed

Lines changed: 14 additions & 5 deletions

File tree

content/learning-paths/laptops-and-desktops/openclaw_continuum/2_dgx_deploy.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,14 @@ OPENCLAW_CRON_CHAT_IDS=<your-telegram-chat-id>
203203
OPENCLAW_GATEWAY_TOKEN=<generated-random-token>
204204
```
205205

206+
Set `OPENCLAW_CRON_TIMEZONE` to your local [IANA timezone](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). Scheduled jobs use UTC when this setting is omitted:
207+
208+
```text
209+
OPENCLAW_CRON_TIMEZONE=<your-IANA-timezone>
210+
```
211+
212+
For example, use `Europe/London`, `America/New_York`, or `Asia/Singapore`. Weather questions in this Learning Path name their location explicitly, so you do not need to configure `OPENCLAW_DEFAULT_WEATHER_LOCATION`.
213+
206214
{{% notice Note %}}
207215
Do not share your Telegram bot token or chat ID with anyone, and do not include them in screenshots, logs, or public repositories.
208216
{{% /notice %}}
@@ -351,16 +359,14 @@ OPENCLAW_QDRANT_BASE_URL=http://127.0.0.1:6333 \
351359
PYTHONPATH=app python3 -m unittest discover -s tests
352360
```
353361

354-
The output should look similar to:
362+
The output contains progress dots followed by this result:
355363

356364
```output
357-
............................................................................................................
358-
----------------------------------------------------------------------
359-
Ran 119 tests in 3.213s
360-
361365
OK
362366
```
363367

368+
The number of tests and the elapsed time can change as the repository evolves. `OK` confirms that the complete suite passed.
369+
364370
These tests validate command routing, task dispatch, cron parsing, ingestion helpers, and failure handling. They are software behavior tests, not hardware benchmarks.
365371

366372
## What you've learned and what's next

content/learning-paths/laptops-and-desktops/openclaw_continuum/5_cpu_only.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,10 +200,13 @@ OPENCLAW_TELEGRAM_BOT_TOKEN=<your-telegram-bot-token>
200200
OPENCLAW_TELEGRAM_ALLOWED_CHAT_IDS=<first-chat-id>,<second-chat-id>
201201
OPENCLAW_CRON_CHAT_IDS=<first-chat-id>,<second-chat-id>
202202
OPENCLAW_GATEWAY_TOKEN=<generated-random-token>
203+
OPENCLAW_CRON_TIMEZONE=<your-IANA-timezone>
203204
```
204205

205206
Separate multiple allowlisted chat IDs with commas. Both household members can then use the same bot and shared local collections.
206207

208+
Use the same IANA timezone convention as the DGX Spark deployment. Scheduled jobs use UTC when this setting is omitted.
209+
207210
Confirm the inference settings:
208211

209212
```text

0 commit comments

Comments
 (0)