Skip to content

Commit ff67620

Browse files
committed
Disable process timeout when serving docs
1 parent 14c0ddc commit ff67620

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

composer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,10 @@
112112
"docs:build": "cd docs && uv run sphinx-build -b html . _build/html",
113113
"docs:clean": "cd docs && rm -rf _build/*",
114114
"docs:linkcheck": "cd docs && uv run sphinx-build -b linkcheck . _build/linkcheck",
115-
"docs:serve": "cd docs && uv run sphinx-autobuild . _build/html --host 0.0.0.0 --port 8000",
115+
"docs:serve": [
116+
"Composer\\Config::disableProcessTimeout",
117+
"cd docs && uv run sphinx-autobuild . _build/html --host 0.0.0.0 --port 8000"
118+
],
116119
"docs:setup": "cd docs && uv sync",
117120
"lint": [
118121
"tools/rector --ansi --dry-run",

0 commit comments

Comments
 (0)