-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathappsettings.json
More file actions
84 lines (71 loc) · 2.31 KB
/
appsettings.json
File metadata and controls
84 lines (71 loc) · 2.31 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"AllowedHosts": "*",
// If a universal API Key is preferred you can set that here
"ApiKey": null,
// Package Deletion Behavior: Unlist | HardDelete
"PackageDeletionBehavior": "HardDelete",
"AllowPackageOverwrites": true,
"IsReadOnlyMode": false,
// If enabled, runs a background task to backfill repository commit metadata
"EnablePackageMetadataBackfill": true,
"Database": {
"Type": "Sqlite"
//"Type": "MariaDb",
//"Version": "10.5.9"
//"Type": "SqlServer"
},
"Search": {
"Type": "Database"
},
//"Search": {
// "Type": "Azure",
// "AccountName": "my-account",
// "ApiKey": "ABCD1234"
//},
"Storage": {
"Type": "FileSystem",
"Path": ""
//"Path": "C://AnotherFolder/Packages"
},
//"Storage": {
// "Type": "AzureBlobStorage",
// "AccountName": "my-account",
// "AccessKey": "abcd1234",
// "Container": "my-container"
//}
//"Storage": {
// "Type": "AzureBlobStorage",
// "ConnectionString": "AccountName=my-account;AccountKey=abcd1234;...",
// "Container": "my-container"
//}
//"Mirror": {
// "NuGet.org": {
// "FeedUrl": "https://api.nuget.org/v3/index.json"
// },
// "dotnet6": {
// "FeedUrl": "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet6/nuget/v3/index.json"
// },
// "xamarin": {
// "FeedUrl": "https://pkgs.dev.azure.com/azure-public/vside/_packaging/xamarin-impl/nuget/v3/index.json"
// },
// "Telerik": {
// "FeedUrl": "https://nuget.telerik.com/nuget",
// "Username": "{your username}",
// "ApiToken": "{your password}"
// }
//},
"ConnectionStrings": {
//"DefaultConnection": "Server=(localdb)\\mssqllocaldb;Database=AuthenticatedFeedDemo;Trusted_Connection=True;MultipleActiveResultSets=true"
"SqlServer": "Server=(localdb)\\mssqllocaldb;Database=AuthenticatedFeedDemo;Trusted_Connection=True;MultipleActiveResultSets=true",
"Sqlite": "Data Source=authenticatedfeeddemo.db",
"MariaDb": "server=127.0.0.1;user=authenticatedfeeddemo;password=12345;database=authenticatedfeeddemo",
"MySql": "server=127.0.0.1;user=authenticatedfeeddemo;password=12345;database=authenticatedfeeddemo"
}
}