Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | 5x | /**
* @internal
* Default and Type for BalekConfiguration
* @module BalekConfigurationDefaults
* @category Configuration
*/
export type BalekConfiguration = {
session: {
loader: {
modules: string[];
};
};
https: {
address: string;
port: string;
};
database: {
sql: {
host: string;
user: string;
password: string;
database: string;
};
mongo: {
host: string;
port: string;
user: string;
password: string;
database: string;
};
};
};
export const defaultBalekConfiguration: BalekConfiguration = {
session: {
loader: {
modules: ["session/login"],
},
},
https: {
address: "0.0.0.0",
port: "8080",
},
database: {
sql: {
host: "localhost",
user: "balekAppUser",
password: "balekAppPassword",
database: "balek",
},
mongo: {
host: "localhost",
port: "27017",
user: "root",
password: "rootPass",
database: "balek",
},
},
};
|