rendertron

Config

When deploying the service, set configuration variables by including a config.json in the root. Available configuration options:

cacheConfig

Example

An example config file specifying a memory cache, with a 2 hour expiration, and a maximum of 50 entries

{
    "cache": "memory",
    "cacheConfig": {
        "cacheDurationMinutes": 120,
        "cacheMaxEntries": 50
    }
}