UNPKG

unleash-server

Version:

Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.

7 lines 275 B
import parseDbUrl from 'parse-database-url'; export const getDbConfig = () => { const url = process.env.TEST_DATABASE_URL || 'postgres://unleash_user:password@localhost:5432/unleash_test'; return parseDbUrl(url); }; //# sourceMappingURL=database-config.js.map