-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.Local.json.example
More file actions
41 lines (41 loc) · 1.32 KB
/
Copy pathappsettings.Local.json.example
File metadata and controls
41 lines (41 loc) · 1.32 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
40
41
{
"AppSettings": {
"ConnectionString": "Server=localhost;Port=3306;Database=smarttermin;User=smarttermin_user;Password=change-me;CharSet=utf8mb4;",
"BaseUrl": "http://localhost:5271",
"FrontendUrl": "http://localhost:3000"
},
"JwtSettings": {
"SecretKey": "replace-with-a-64-character-secret-from-your-password-manager"
},
"CloudinarySettings": {
"CloudName": "replace-with-cloudinary-cloud-name",
"ApiKey": "replace-with-cloudinary-api-key",
"ApiSecret": "replace-with-cloudinary-api-secret"
},
"Twilio": {
"AccountSID": "replace-with-twilio-account-sid",
"AuthToken": "replace-with-twilio-auth-token",
"PhoneNumber": "+10000000000"
},
"FirebaseSettings": {
"ProjectId": "replace-with-firebase-project-id",
"ServiceAccountKeyPath": "smarttermin-firebase-adminsdk.json",
"ServiceAccountKeyJson": null
},
"PaddleSettings": {
"ApiKey": "replace-with-paddle-api-key",
"Environment": "sandbox"
},
"EmailSettings": {
"SmtpServer": "smtp.example.com",
"SmtpPort": 587,
"SmtpUsername": "no-reply@smarttermin.example",
"SmtpPassword": "replace-with-smtp-password",
"EnableSsl": true,
"FromEmail": "no-reply@smarttermin.example",
"FromName": "SmartTermin"
},
"EncryptionSettings": {
"Key": "replace-with-a-64-character-encryption-key"
}
}