Name Message Date
📁 Properties Add web dashboard for viewing monitor status and detections. 5 hours ago
📁 Protos Initialize project 1 month ago
📁 wwwroot Add web dashboard for viewing monitor status and detections. 5 hours ago
📄 .containerfile Containerize 10 days ago
📄 .dockerignore Containerize 10 days ago
📄 .editorconfig Initialize project 1 month ago
📄 .gitignore Remove database file from repository 10 days ago
📄 appsettings.Development.json Fix Claudes mess 11 days ago
📄 appsettings.json Fix Claudes mess 11 days ago
📄 BfiMonitor.csproj Add web dashboard for viewing monitor status and detections. 5 hours ago
📄 BfiMonitor.slnx Initialize project 1 month ago
📄 BfiScreeningCheckerJob.cs Use Playwright settings from Lukas 10 days ago
📄 dotnet-tools.json Initialize project 1 month ago
📄 global.json Fix Claudes mess 11 days ago
📄 MonitorOptions.cs Fix Claudes mess 11 days ago
📄 OpenTelemetryExtensions.cs Add web dashboard for viewing monitor status and detections. 5 hours ago
📄 packages.lock.json Add web dashboard for viewing monitor status and detections. 5 hours ago
📄 PlaywrightBrowserService.cs Use Playwright settings from Lukas 10 days ago
📄 Program.cs Add web dashboard for viewing monitor status and detections. 5 hours ago
📄 ScreeningRepository.cs Add web dashboard for viewing monitor status and detections. 5 hours ago
📄 SendSmsJob.cs Add tracing 10 days ago
📄 Tracing.cs Add web dashboard for viewing monitor status and detections. 5 hours ago
📄 MonitorOptions.cs
1 2 3 4 5 6 7 8 9 10
internal sealed class MonitorOptions
{
    public int IntervalSeconds { get; set; } = 300;
    public string Url { get; set; } = "";
    public string Selector { get; set; } = ".detailed-search-results";
    public string[] PhoneNumbers { get; set; } = [];
    public string SmsSenderAddress { get; set; } = "http://localhost:50051";
    public bool Headless { get; set; } = true;
}