Skip to content

Commit 467872d

Browse files
authored
chore: Update docs run command in Makefile (#1547)
1 parent 979dad6 commit 467872d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
# This is default for local testing, but GitHub workflows override it to a higher value in CI
55
E2E_TESTS_CONCURRENCY = 1
66

7+
# Placeholder token; replace with a real one for local docs testing if needed
8+
APIFY_TOKEN = apify_api_token_placeholder
9+
710
clean:
811
rm -rf .mypy_cache .pytest_cache .ruff_cache build dist htmlcov .coverage
912

@@ -55,4 +58,4 @@ build-docs:
5558
cd website && corepack enable && yarn && uv run yarn build
5659

5760
run-docs: build-api-reference
58-
cd website && corepack enable && yarn && uv run yarn start
61+
export APIFY_SIGNING_TOKEN=$(APIFY_TOKEN) && cd website && corepack enable && yarn && uv run yarn start

0 commit comments

Comments
 (0)