Skip to content

Commit e9fd451

Browse files
committed
chore: default local dev event store to ClickHouse in .env.example
Fresh clones left EVENT_REPOSITORY_DEFAULT_STORE unset, which falls back to the "postgres" store. The local stack is already ClickHouse-backed (run replication + CLICKHOUSE_URL), so dev run traces showed up empty even though the run itself appeared. Default it to clickhouse_v2.
1 parent a9f756b commit e9fd451

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.env.example

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ NODE_ENV=development
1717
CLICKHOUSE_URL=http://default:password@localhost:8123
1818
RUN_REPLICATION_CLICKHOUSE_URL=http://default:password@localhost:8123
1919
RUN_REPLICATION_ENABLED=1
20+
# Store task run spans/traces in ClickHouse so the dashboard trace view is
21+
# populated in local dev. The local stack is ClickHouse-backed (see above), so
22+
# leaving this unset falls back to the "postgres" store and dev run traces show
23+
# up empty even though the run itself appears.
24+
EVENT_REPOSITORY_DEFAULT_STORE=clickhouse_v2
2025

2126
# Set this to UTC because Node.js uses the system timezone
2227
TZ="UTC"

0 commit comments

Comments
 (0)