We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 979dad6 commit 467872dCopy full SHA for 467872d
Makefile
@@ -4,6 +4,9 @@
4
# This is default for local testing, but GitHub workflows override it to a higher value in CI
5
E2E_TESTS_CONCURRENCY = 1
6
7
+# Placeholder token; replace with a real one for local docs testing if needed
8
+APIFY_TOKEN = apify_api_token_placeholder
9
+
10
clean:
11
rm -rf .mypy_cache .pytest_cache .ruff_cache build dist htmlcov .coverage
12
@@ -55,4 +58,4 @@ build-docs:
55
58
cd website && corepack enable && yarn && uv run yarn build
56
59
57
60
run-docs: build-api-reference
- 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