mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-04 04:22:50 +00:00
34 lines
998 B
JavaScript
34 lines
998 B
JavaScript
// @ts-check
|
|
|
|
/**
|
|
* This is the default configuration for elasticsearch (a database)
|
|
*
|
|
* To select your university-specific configuration which is merged from this default file and your university-specific
|
|
* file, you have to supply the `NODE_APP_INSTANCE` environment variable with your license plate
|
|
*
|
|
* To select a different database, you have to supply the `NODE_CONFIG_ENV` environment variable with a database name
|
|
* that is implemented in the backend
|
|
*
|
|
* To get more information about the meaning of specific fields, please use your IDE to read the TSDoc documentation.
|
|
*
|
|
* @type {import('../../src/storage/elasticsearch/types/elasticsearch-config.js')}
|
|
*/
|
|
const config = {
|
|
internal: {
|
|
database: {
|
|
name: 'elasticsearch',
|
|
version: '5.6',
|
|
query: {
|
|
minMatch: '75%',
|
|
queryType: 'dis_max',
|
|
matchBoosting: 1.3,
|
|
fuzziness: 'AUTO',
|
|
cutoffFrequency: 0,
|
|
tieBreaker: 0,
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|