From dd81c9dcdc075e122e7fb28ac44426b1b9de889f Mon Sep 17 00:00:00 2001 From: Vlada Dusek Date: Mon, 10 Nov 2025 17:08:11 +0100 Subject: [PATCH] chore: Add placeholder Apify token and update docs run command --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6ca17970b0..98024112d2 100644 --- a/Makefile +++ b/Makefile @@ -4,6 +4,9 @@ # This is default for local testing, but GitHub workflows override it to a higher value in CI E2E_TESTS_CONCURRENCY = 1 +# Placeholder token; replace with a real one for local docs testing if needed +APIFY_TOKEN = apify_api_token_placeholder + clean: rm -rf .mypy_cache .pytest_cache .ruff_cache build dist htmlcov .coverage @@ -55,4 +58,4 @@ build-docs: cd website && corepack enable && yarn && uv run yarn build run-docs: build-api-reference - cd website && corepack enable && yarn && uv run yarn start + export APIFY_SIGNING_TOKEN=$(APIFY_TOKEN) && cd website && corepack enable && yarn && uv run yarn start