compound
Version:
CompoundJS - MVC framework for NodeJS
28 lines (27 loc) • 603 B
JavaScript
module.exports = {
development: {
driver: 'postgres',
host: 'localhost',
port: 5432,
username: 'root',
password: '',
database: '{{ APPNAME }}_dev',
debug: true
},
test: {
driver: 'postgres',
host: 'localhost',
port: 5432,
username: 'root',
password: '',
database: '{{ APPNAME }}_test'
},
production: {
driver: 'postgres',
host: 'localhost',
port: 5432,
username: 'root',
password: '',
database: '{{ APPNAME }}_production'
}
};