21 lines
488 B
TypeScript
21 lines
488 B
TypeScript
export default Object.assign(require("wms-core/config/production").default, {
|
|
log_level: "DEBUG",
|
|
db_log_level: "ERROR",
|
|
base_url: "https://aldap.toot.party",
|
|
public_websocket_url: "wss://aldap.toot.party",
|
|
domain: 'aldap.toot.party',
|
|
session: {
|
|
cookie: {
|
|
secure: true
|
|
}
|
|
},
|
|
mail: {
|
|
secure: true,
|
|
allow_invalid_tls: false
|
|
},
|
|
magic_link: {
|
|
validity_period: 900,
|
|
},
|
|
approval_mode: true,
|
|
});
|