A task runner for [@nrwl/nx](https://nx.dev/) that uses an filesystem location as a remote cache.
npm install @stixx200/nx-remotecache-filesystemA task runner for @nrwl/nx that uses an filesystem location as a remote cache.
```
npm install --save-dev @stixx200/nx-remotecache-filesystem
| Parameter | Description | Environment Variable / .env | nx.json |NX_CACHE_FS_CACHE_LOCATION
|----------------|-------------------------------------------------------------------------|------------------------------|-----------------|
| Cache Location | Target cache location | | cacheLocation |NX_CACHE_FS_CHMOD
| Chmod | Run chmod after creating the target cache file on it. Provide a number. | | chmod |configFile
| Config File | Provide a js file which exports a configuration. | - | |
`json``
{
"tasksRunnerOptions": {
"default": {
"runner": "nx-remotecache-filesystem",
"options": {
"cacheLocation": "/mnt/shared-cache",
"chmod": 255
}
}
}
}