initial commit

This commit is contained in:
2022-06-28 13:02:50 +02:00
commit a4e6b655b7
16 changed files with 7870 additions and 0 deletions

16
config.sample.js Normal file
View File

@@ -0,0 +1,16 @@
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;