salix/loopback/server/datasources.json

34 lines
801 B
JSON
Raw Normal View History

2018-12-17 10:28:39 +00:00
{
"db": {
2019-02-28 08:20:14 +00:00
"connector": "memory",
"timezone": "local"
},
"vn": {
"connector": "vn-mysql",
"database": "vn",
"debug": false,
2018-12-17 10:28:39 +00:00
"host": "localhost",
"port": "3306",
"username": "root",
"password": "root",
2018-07-24 07:35:23 +00:00
"multipleStatements": true,
"connectTimeout": 20000,
2019-03-01 06:31:11 +00:00
"acquireTimeout": 20000
},
"storage": {
"name": "storage",
"connector": "loopback-component-storage",
"provider": "filesystem",
2019-06-06 12:56:01 +00:00
"root": "./",
"maxFileSize": "10485760",
"allowedContentTypes": [
"application/pdf",
"application/zip",
"application/rar",
"image/png",
"image/jpeg",
"image/jpg"
]
}
2018-12-17 10:28:39 +00:00
}