17 lines
353 B
JavaScript
17 lines
353 B
JavaScript
const config = {
|
|
urlPrefix: "/mhd",
|
|
openDataKey: 'INSERT_YOUR_OPENDATA_API_KEY_HERE',
|
|
database: {
|
|
client: 'pg',
|
|
connection: {
|
|
host : '127.0.0.1',
|
|
user : 'erik',
|
|
password : '',
|
|
database : 'mhd'
|
|
},
|
|
searchPath: ['knex', 'public'],
|
|
}
|
|
};
|
|
|
|
export default config;
|