The target framework has been updated to netstandard2.0
.
We have to manually seed the appsettings.json
policies:
public static async Task Main(string[] args) { IWebHost webHost = CreateWebHostBuilder(args).Build(); using (var scope = webHost.Services.CreateScope()) { // get the ClientPolicyStore instance var clientPolicyStore = scope.ServiceProvider.GetRequiredService<IClientPolicyStore>(); // seed Client data from appsettings await clientPolicyStore.SeedAsync(); // get the IpPolicyStore instance var ipPolicyStore = scope.ServiceProvider.GetRequiredService<IIpPolicyStore>(); // seed IP data from appsettings await ipPolicyStore.SeedAsync(); } await webHost.RunAsync(); }
Startup.cs
:// configure the resolvers services.AddSingleton<IRateLimitConfiguration, RateLimitConfiguration>();
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4