-
Notifications
You must be signed in to change notification settings - Fork 24
/
env.example.js
47 lines (36 loc) · 1.09 KB
/
env.example.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
// Before running this app, copy this file to env.js and edit the
// settings. Any setting from `config/env.default.js' can be modified here.
module.exports = (config /*: * */) => { // eslint-disable-line
// **** Sample Email Settings (SMTP) ****
//config.email.smtp = {
// host: 'smtp.mailtrap.io',
// port: 2525,
// auth: {
// user: '',
// pass: ''
// }
//}
// **** Sample Email Settings (Amazon SES) ****
//config.email.ses = {
// accessKeyId: 'amazon_id',
// secretAccessKey: 'amazon_key'
//};
// **** Sample MySQL Database ****
//config.db = {
// dialect: 'mysql',
// host: 'localhost',
// user: 'username',
// password: '',
// database: 'gift'
//};
// **** Sample Production Mode Settings ****
//config.databaseEncryptionKey = 'change me';
//config.jwtSecrets.auth = 'changeme';
//config.jwtSecrets.nominations = 'changeme';
//config.verboseAccessLog = false;
//config.useCompression = false;
//config.verboseSeed = false;
//config.email.fromAddress = '[email protected]';
//config.email.fromName = 'noreply';
//config.email.adminAddress = '[email protected]';
};