mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2025-12-23 22:56:15 +00:00
18 lines
406 B
JavaScript
18 lines
406 B
JavaScript
/**
|
|
* This is the database configuration for the technical university of berlin
|
|
*
|
|
* @type {import('@openstapps/logger').RecursivePartial<import('../../src/storage/elasticsearch/types/elasticsearch-config.js').ElasticsearchConfigFile>}
|
|
*/
|
|
const config = {
|
|
internal: {
|
|
database: {
|
|
name: 'elasticsearch',
|
|
query: {
|
|
fields: ["name"]
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|