ily.li/config/default.ts

21 lines
589 B
TypeScript
Raw Normal View History

2020-04-23 14:58:14 +02:00
export default Object.assign(require("wms-core/config/default").default, {
2020-06-14 13:01:52 +02:00
domain: 'localhost',
base_url: 'http://localhost:4893',
public_websocket_url: 'ws://localhost:4893',
port: 4893,
mysql: {
connectionLimit: 10,
host: "localhost",
user: "root",
password: "",
database: "ilyli",
create_database_automatically: false
},
magic_link: {
validity_period: 20
},
gitlab_webhook_token: 'secret',
newlyGeneratedSlugSize: 3,
default_file_ttl: 30, // 30 seconds
2020-06-14 17:37:47 +02:00
max_upload_size: 1, // MB
2020-04-23 14:58:14 +02:00
});