-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.json
More file actions
27 lines (27 loc) · 784 Bytes
/
appsettings.json
File metadata and controls
27 lines (27 loc) · 784 Bytes
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
{
"PostgresSettings": {
"Host": "localhost",
"Port": 5432,
"Username": "postgres",
"Password": "DaVinci",
"Database": "postgres",
"BackupRetentionDays": 7,
"BackupType": "Full",
"SpecificTables": [], // Add table names if using SpecificTables backup type
"BackupPath": "C:\\Users\\Ingve\\TeamLiknes Dropbox\\Ingve Moss Liknes\\PostgresBackups",
"LogPath": "C:\\Users\\Ingve\\TeamLiknes Dropbox\\Ingve Moss Liknes\\PostgresBackups\\Logs"
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
},
"Console": {
"FormatterName": "Simple",
"FormatterOptions": {
"TimestampFormat": "yyyy-MM-dd HH:mm:ss "
}
}
}
}