-
Notifications
You must be signed in to change notification settings - Fork 0
/
appsettings.json
42 lines (42 loc) · 931 Bytes
/
appsettings.json
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
{
"GoogleSettings": {
"GooglePhotosApiBaseUrl": "https://photoslibrary.googleapis.com/",
"GoogleClientId": "",
"GoogleClientSecret": "",
"GooglePhotoScope": "https://www.googleapis.com/auth/photoslibrary",
"GoogleTokenUrl": "https://oauth2.googleapis.com/token"
},
"LocalSettings": {
"LocalFolderRoot": "",
"IgnoreFolderStartingWith": [ "_", "0.", "1.", "2." ],
"MaxFileSizeBytes": 45000000,
"ImageExtensions": [
".bmp",
".gif",
".jpg",
".jpeg",
".png"
],
"VideoExtensions": [
".3gp",
".avi",
".mov",
".mp4",
".mpg",
".wmv"
]
},
"SyncSettings": {
"PromptBeforeEachAlbumSync": true,
"BatchSize": 10,
"ParallelUploads": 10
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"System": "Warning",
"GooglePhotoSync": "Debug"
}
}
}