21 lines
589 B
TypeScript
21 lines
589 B
TypeScript
export default Object.assign(require("wms-core/config/default").default, {
|
|
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
|
|
max_upload_size: 1, // MB
|
|
}); |