import { CacheType } from '../lib/cache'; const config = { graphQLEndpoint: 'http://localhost:4050/graphql', mock: true, cacheSelect: CacheType.DYNAMO, cacheDynamo: { tableName: 'test-ci-mediaviewcache', scoreIndexName: 'pk_score', paginationLimit: 10, region: 'us-east-1', endpoint: process.env.MV_CACHE_DYNAMO_ENDPOINT || 'http://localhost:4569', }, }; export { config };