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: README.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -86,6 +86,15 @@ yarn run serve:production
86
86
```
87
87
Production build will be served by default to `http://localhost:8080/` or `http://127.0.0.1:8080/`
88
88
89
+
## Nx Cloud caching
90
+
91
+
This repo uses Nx Cloud to speed up builds and keep CI deterministic via remote caching.
92
+
93
+
- Configuration: `nx.json` uses the Nx Cloud runner and reads the token from the `NX_CLOUD_ACCESS_TOKEN` environment variable.
94
+
- CI: CircleCI jobs automatically use `--cloud` when the token is present; for forked PRs (no secrets), they fall back to local-only caching. Build logs are stored under `logs/nx-build.log`.
95
+
- Verifying locally: run the same target twice; the second run should print “Nx read the output from the cache”. Example: `nx run remix-ide:build` and run it again.
96
+
- Insights: View cache analytics and run details at https://nx.app (links appear in Nx output when the token is configured).
0 commit comments