fix: correct export_serving invocation in all docs

`-m padelnomics.export_serving` doesn't resolve because src/ is not
installed as a package in the workspace. Use the direct script path.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Deeman
2026-02-25 16:06:31 +01:00
parent cee2e9babc
commit b73386b9b6
4 changed files with 4 additions and 4 deletions

View File

@@ -130,5 +130,5 @@ uv run sqlmesh -p transform/sqlmesh_padelnomics plan prod --auto-apply
# Export serving tables to analytics.duckdb
DUCKDB_PATH=$(pwd)/data/lakehouse.duckdb \
SERVING_DUCKDB_PATH=$(pwd)/analytics.duckdb \
uv run python -m padelnomics.export_serving
uv run python src/padelnomics/export_serving.py
```