mirror of
https://github.com/fergalmoran/dss.web.git
synced 2026-02-15 04:25:41 +00:00
15 lines
317 B
JavaScript
Executable File
15 lines
317 B
JavaScript
Executable File
'use strict';
|
|
|
|
module.exports = {
|
|
// MongoDB connection options
|
|
mongo: {
|
|
uri: 'mongodb://localhost/dssweb-dev'
|
|
},
|
|
|
|
seedDB: true,
|
|
redisHost: 'localhost',
|
|
apiUrl: 'http://ext-test.deepsouthsounds.com:8001',
|
|
//apiUrl: 'http://localhost:8001',
|
|
radioUrl: 'http://localhost:8000'
|
|
};
|