ducktors / turborepo-remote-cache

Open source implementation of the Turborepo custom remote cache server.
https://ducktors.github.io/turborepo-remote-cache/
MIT License
1.03k stars 95 forks source link

apiUrl is not working #166

Closed ghost closed 1 year ago

ghost commented 1 year ago

🐛 Bug Report

I configure apiUrl but turborepo only use default cache

To Reproduce

config.json

{
  "teamId": "team_name",
  "apiUrl": "http://localhost:3000"
}

package.json

{
  "build": "turbo run build --token=token_name"
}

Paste the results here:

image

Log prints remote cache is enabled but cache files still create in default path

Your Environment

ghost commented 1 year ago

It seems request isn't reached I try to log every requests But there is no log when build

app.use((req, res, next) => {
  console.log("Time:", Date.now());
  next();
});
ghost commented 1 year ago

Maybe this is bug of turborepo