You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/README.md
+24-5Lines changed: 24 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,12 +27,31 @@ This is due to some files are automatically generated in `source/dataset_benchma
27
27
28
28
## Cloudflare Pages deployment
29
29
30
-
Cloudflare Pages should build the static docs without installing the RoboVerse Python package. Set the Pages build variable `SKIP_DEPENDENCY_INSTALL=1` so Cloudflare skips the automatic `pip install .` phase, which otherwise downloads simulator/runtime packages such as `torch`.
30
+
The site is deployed via the `.github/workflows/deploy-docs.yml` GitHub
31
+
Action, which builds in CI and uploads the static `public/` directory to
32
+
the Cloudflare Pages project `roboverse-release` with
33
+
`wrangler pages deploy`. Cloudflare itself is **not** asked to build —
34
+
this avoids its framework auto-detection running `pip install .` against
35
+
the repository's `pyproject.toml`, which would otherwise pull in `torch`,
36
+
`metasim` (with all of its sim/runtime deps), and friends.
31
37
32
-
Use this build command:
38
+
Required GitHub repository secrets:
39
+
40
+
-`CLOUDFLARE_API_TOKEN` — token with `Account → Cloudflare Pages → Edit`
41
+
-`CLOUDFLARE_ACCOUNT_ID` — the Cloudflare account ID hosting the Pages project
42
+
43
+
In the Cloudflare Pages dashboard for `roboverse-release`, disable the
0 commit comments