mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +01:00 
			
		
		
		
	* feat: move secrets to settings * feat: Add better support for detailed db options. Added db field in options to allow better control of db-options. Especially important to allow special chars in database password which might lead to an invaid url when defined as a database-url. * fix: integrate logger with knex logger * fix: remove secret option from all examples * fix: more options.js unit tests * fix: added settings-store e2e tests
		
			
				
	
	
		
			13 lines
		
	
	
		
			286 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			286 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| const parseDbUrl = require('parse-database-url');
 | |
| 
 | |
| module.exports = {
 | |
|     getDb: () => {
 | |
|         const url =
 | |
|             process.env.TEST_DATABASE_URL ||
 | |
|             'postgres://unleash_user:passord@localhost:5432/unleash_test';
 | |
|         return parseDbUrl(url);
 | |
|     },
 | |
| };
 |