Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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