-
Notifications
You must be signed in to change notification settings - Fork 0
/
pxl.config.js
61 lines (56 loc) · 1.34 KB
/
pxl.config.js
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
'use strict'
module.exports = {
mode: 'graphql',
/*
* Set the database informations
* Available database connections: ['mongodb', 'postgres']
*/
database: {
connection: process.env.DB_CONNECTION,
connect: {
host: process.env.DB_HOST,
port: process.env.DB_PORT,
user: process.env.DB_USER,
password: process.env.DB_PASSWORD,
database: process.env.DB_DATABASE
}
},
/*
* Set the authentication configurations
* https://www.npmjs.com/package/passport-jwt
* https://www.npmjs.com/package/user-groups-roles
*/
authentication: {
enabled: true,
roles: ['admin', 'editor', 'seller', 'user']
},
/*
* Set the email configurations
* https://www.npmjs.com/package/email-templates
*/
email: {
host: process.env.MAIL_HOST,
port: process.env.MAIL_PORT,
ssl: process.env.MAIL_SSL,
tls: process.env.MAIL_TLS,
auth: {
user: process.env.MAIL_AUTH_USER,
pass: process.env.MAIL_AUTH_PASS
}
},
/*
* Set the file upload configurations
* Available storage connections: ['local', 'AWS_S3']
* https://www.npmjs.com/package/multer
* https://www.npmjs.com/package/aws-sdk
*/
fileUpload: {
enabled: true,
storage: 'local',
tmpPath: 'static',
path: 'uploads',
type: 'single',
fields: 'file',
fileSize: '5mb'
}
}