* [wip] bridge python and c# and bring in rank torrent name * Container restores package now Includes two dev scripts to install the python packages locally for debugging purposes. * Introduce slightly turned title matching scoring, by making it length aware this should help with sequels such as Terminator 2, vs Terminator etc * Version bump Also fixes postgres healthcheck so that it utilises the user from the stack.env file
13 lines
364 B
C#
13 lines
364 B
C#
namespace SharedContracts.Python;
|
|
|
|
public static class ServiceCollectionExtensions
|
|
{
|
|
public static IServiceCollection RegisterPythonEngine(this IServiceCollection services)
|
|
{
|
|
services.AddSingleton<PythonEngineService>();
|
|
|
|
services.AddHostedService(p => p.GetRequiredService<PythonEngineService>());
|
|
|
|
return services;
|
|
}
|
|
} |