-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenvironment-sample.json
More file actions
39 lines (39 loc) · 1.25 KB
/
environment-sample.json
File metadata and controls
39 lines (39 loc) · 1.25 KB
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
{
"server_port": 8080,
"sessionExpireTimeInMinutes": 30,
"mailLinkExpireTimeInHours": 48,
"maxLoginAttempts": 5,
"maxLockedTime": 15,
"pathSavedDocuments": null,
"cleanupTempDocuments": 120,
"initialAccountId": 60000,
"issuer": "FlyTrainer LLC",
"defaultPassword": "pilot",
"encryptKey": "*******",
"secretKey": "*******",
"email": {
"mail.smtp.host": "smtp.gmail.com",
"mail.smtp.port": 587,
"mail.smtp.auth": true,
"mail.smtp.starttls.enable": true,
"username": "*******@gmail.com",
"password": "*******",
"encrypted": true
},
"messages": {
"accountActivation": [
"Hello %s %s,<br>",
"The final registation step is to confirm your email address by clicking on the link below.",
"Please click this activation link: %s<br>",
"Sincerely,",
"The FlyTrainer Services Staff"
],
"resetPassword": [
"Hello,<br>",
"You have requested to change your password.",
"Please click on the below link to create a new password: %s<br>",
"Sincerely,",
"The FlyTrainer Services Staff"
]
}
}