You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
782 B
Plaintext
38 lines
782 B
Plaintext
5 years ago
|
var config = {
|
||
|
development: {
|
||
|
//url to be used in link generation
|
||
|
url: 'http://my.site.com',
|
||
|
//mongodb connection settings
|
||
|
database: {
|
||
|
host: 'mongodb',
|
||
|
port: '27017',
|
||
|
db: 'unboundedpress',
|
||
|
user: 'username',
|
||
|
pass: 'password'
|
||
|
},
|
||
|
//server details
|
||
|
server: {
|
||
|
host: '127.0.0.1',
|
||
|
port: '3422'
|
||
|
}
|
||
|
},
|
||
|
production: {
|
||
|
//url to be used in link generation
|
||
|
url: 'http://my.site.com',
|
||
|
//mongodb connection settings
|
||
|
database: {
|
||
|
host: 'mongodb',
|
||
|
port: '27017',
|
||
|
db: 'unboundedpress',
|
||
|
user: 'username',
|
||
|
pass: 'password',
|
||
|
},
|
||
|
//server details
|
||
|
server: {
|
||
|
host: '127.0.0.1',
|
||
|
port: '3421'
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
module.exports = config;
|