Skip to main content
Glama
config.ts•704 B
/** * Test-specific configuration */ export const testConfig = { // Database configuration database: { url: process.env.TEST_DATABASE_URL || (process.env.DATABASE_URL ? `${process.env.DATABASE_URL}_test` : 'postgresql://localhost:5432/taskflow_test'), }, // Redis configuration redis: { url: process.env.TEST_REDIS_URL || 'redis://localhost:6379/1', }, // Test settings test: { timeout: 10000, retries: 3, }, }; /** * Get test database URL */ export function getTestDatabaseUrl(): string { return testConfig.database.url; } /** * Get test Redis URL */ export function getTestRedisUrl(): string { return testConfig.redis.url; }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/jatinderbhola/mcp-taskflow-tracker-api'

If you have feedback or need assistance with the MCP directory API, please join our Discord server