UNPKG

@vessl-ai/mcpctl-control-plane

Version:

Vessl MCP Control Plane service for managing distributed jobs.

17 lines 567 B
import { registerAs } from '@nestjs/config'; import * as os from 'os'; import * as path from 'path'; export var CacheProvider; (function (CacheProvider) { CacheProvider["MEMORY"] = "memory"; CacheProvider["REDIS"] = "redis"; CacheProvider["ETCD"] = "etcd"; })(CacheProvider || (CacheProvider = {})); export const cacheConfiguration = registerAs('cache', () => ({ defaultCache: { provider: CacheProvider.MEMORY, backupDir: path.join(os.homedir(), '.mcpctl', 'cache'), }, caches: {}, })); //# sourceMappingURL=cache.config.js.map