Add CACHE_DIR var

This commit is contained in:
Bastien
2021-02-01 15:54:27 +01:00
parent 9d02ab1eb5
commit f7ff6336f2
3 changed files with 8 additions and 4 deletions

View File

@@ -8,6 +8,7 @@ interface IConfig {
SPAWN_CLUSTER_PROCS: number;
API_URL_PREFIX: string;
POLL_RATE_MS: number;
CACHE_DIR: string;
};
ESPLORA: {
REST_API_URL: string;
@@ -66,7 +67,8 @@ const defaults: IConfig = {
'HTTP_PORT': 8999,
'SPAWN_CLUSTER_PROCS': 0,
'API_URL_PREFIX': '/api/v1/',
'POLL_RATE_MS': 2000
'POLL_RATE_MS': 2000,
'CACHE_DIR': './'
},
'ESPLORA': {
'REST_API_URL': 'http://127.0.0.1:3000',