mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-05 13:02:54 +00:00
19 lines
441 B
JavaScript
19 lines
441 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: {
|
|
minMatch: '60%',
|
|
queryType: 'query_string',
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|