6293fa89e3
Build and Push Docker Images / build (push) Failing after 1m36s
- New cv-search-models shared library: EF entities + CvSearchDbContext for cvSearch schema (JobSearchTokens, JobSearchSessions, JobSearchResults tables) - New cv-search-job worker service: polls DB for pending sessions, scrapes job boards via configurable HTML scraping, runs LLM scoring via cv-matcher-api, emails ranked results - cv-matcher-api: JobTokenService creates one-time tokens; JobSearchController handles link clicks and creates sessions - api: proxies job-search start endpoint, appends job search link to match result email - CI workflow updated to build and push myai-cv-search-job:staging image - CLAUDE.md documentation added for all affected services Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
31 lines
1.1 KiB
XML
31 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Worker">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<RootNamespace>CvSearchJob</RootNamespace>
|
|
<AssemblyName>cv-search-job</AssemblyName>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="MailKit" Version="4.16.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.0" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="10.0.7" />
|
|
<PackageReference Include="Refit.HttpClientFactory" Version="10.1.6" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="logs\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\Apis\cv-matcher-api-models\cv-matcher-api-models.csproj" />
|
|
<ProjectReference Include="..\..\Apis\cv-search-models\cv-search-models.csproj" />
|
|
<ProjectReference Include="..\..\Apis\shared-models\shared-models.csproj" />
|
|
<ProjectReference Include="..\..\Helpers\startup-helpers\startup-helpers.csproj" />
|
|
<ProjectReference Include="..\job-scheduler\job-scheduler.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|