Repository: govigilant/vigilant
Branch: main
Commit: db48e305ec9a
Files: 1102
Total size: 1.6 MB
Directory structure:
gitextract_0yr_cv_n/
├── .editorconfig
├── .gitattributes
├── .github/
│ └── workflows/
│ ├── code-style.yml
│ ├── image.yml
│ ├── package-quality.yml
│ ├── release-image.yml
│ └── tests.yml
├── .gitignore
├── Dockerfile
├── LICENSE.md
├── README.md
├── SECURITY.md
├── app/
│ ├── Console/
│ │ └── Kernel.php
│ ├── Exceptions/
│ │ └── Handler.php
│ ├── Http/
│ │ ├── Controllers/
│ │ │ └── Controller.php
│ │ ├── Kernel.php
│ │ └── Middleware/
│ │ ├── Authenticate.php
│ │ ├── EncryptCookies.php
│ │ ├── PreventRequestsDuringMaintenance.php
│ │ ├── RedirectIfAuthenticated.php
│ │ ├── TrimStrings.php
│ │ ├── TrustHosts.php
│ │ ├── TrustProxies.php
│ │ ├── ValidateSignature.php
│ │ └── VerifyCsrfToken.php
│ ├── Providers/
│ │ ├── AppServiceProvider.php
│ │ ├── AuthServiceProvider.php
│ │ ├── BroadcastServiceProvider.php
│ │ ├── EventServiceProvider.php
│ │ ├── FortifyServiceProvider.php
│ │ ├── HorizonServiceProvider.php
│ │ ├── JetstreamServiceProvider.php
│ │ └── RouteServiceProvider.php
│ └── View/
│ └── Components/
│ ├── AppLayout.php
│ └── GuestLayout.php
├── artisan
├── bootstrap/
│ ├── app.php
│ └── cache/
│ └── .gitignore
├── composer.json
├── config/
│ ├── app.php
│ ├── auth.php
│ ├── broadcasting.php
│ ├── cache.php
│ ├── cors.php
│ ├── database.php
│ ├── filesystems.php
│ ├── fortify.php
│ ├── hashing.php
│ ├── horizon.php
│ ├── jetstream.php
│ ├── livewire.php
│ ├── logging.php
│ ├── mail.php
│ ├── queue.php
│ ├── sanctum.php
│ ├── services.php
│ ├── session.php
│ └── view.php
├── database/
│ ├── .gitignore
│ ├── migrations/
│ │ ├── 2019_08_19_000000_create_failed_jobs_table.php
│ │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php
│ │ ├── 2024_02_18_184745_create_sessions_table.php
│ │ └── 2024_03_23_092656_create_notifications_table.php
│ └── seeders/
│ └── DatabaseSeeder.php
├── docker/
│ ├── crontab
│ ├── entrypoint.sh
│ ├── horizon-entrypoint.sh
│ ├── nginx.conf
│ ├── php-fpm.ini
│ ├── preload.php
│ ├── supervisor/
│ │ └── supervisor.conf
│ └── www.conf
├── docker-compose.yml
├── package.json
├── packages/
│ ├── certificates/
│ │ ├── .gitignore
│ │ ├── composer.json
│ │ ├── config/
│ │ │ └── certificates.php
│ │ ├── database/
│ │ │ └── migrations/
│ │ │ ├── 2025_04_08_200000_create_create_certificate_monitors_table.php
│ │ │ └── 2025_04_12_090000_create_create_certificate_monitor_history_table.php
│ │ ├── phpstan.neon
│ │ ├── phpunit.xml
│ │ ├── resources/
│ │ │ ├── navigation.php
│ │ │ └── views/
│ │ │ ├── components/
│ │ │ │ └── empty-states/
│ │ │ │ └── monitors.blade.php
│ │ │ ├── index.blade.php
│ │ │ ├── livewire/
│ │ │ │ ├── certificate-monitor-form.blade.php
│ │ │ │ └── monitor/
│ │ │ │ └── dashboard.blade.php
│ │ │ └── monitor/
│ │ │ └── index.blade.php
│ │ ├── routes/
│ │ │ └── web.php
│ │ ├── src/
│ │ │ ├── Actions/
│ │ │ │ └── CheckCertificate.php
│ │ │ ├── Commands/
│ │ │ │ ├── CheckCertificateCommand.php
│ │ │ │ └── CheckCertificatesCommand.php
│ │ │ ├── Http/
│ │ │ │ └── Controllers/
│ │ │ │ └── CertificateMonitorController.php
│ │ │ ├── Jobs/
│ │ │ │ └── CheckCertificateJob.php
│ │ │ ├── Livewire/
│ │ │ │ ├── CertificateMonitorForm.php
│ │ │ │ ├── Forms/
│ │ │ │ │ └── CertificateMonitorForm.php
│ │ │ │ ├── Monitor/
│ │ │ │ │ └── Dashboard.php
│ │ │ │ └── Tables/
│ │ │ │ ├── CertificateMonitorHistoryTable.php
│ │ │ │ └── CertificateMonitorsTable.php
│ │ │ ├── Models/
│ │ │ │ ├── CertificateMonitor.php
│ │ │ │ └── CertificateMonitorHistory.php
│ │ │ ├── Notifications/
│ │ │ │ ├── CertificateChangedNotification.php
│ │ │ │ ├── CertificateExpiredNotification.php
│ │ │ │ ├── CertificateExpiresInDaysNotification.php
│ │ │ │ ├── Conditions/
│ │ │ │ │ └── DaysCondition.php
│ │ │ │ └── UnableToResolveCertificateNotification.php
│ │ │ └── ServiceProvider.php
│ │ ├── testbench.yaml
│ │ └── tests/
│ │ └── TestCase.php
│ ├── core/
│ │ ├── .gitignore
│ │ ├── composer.json
│ │ ├── config/
│ │ │ └── core.php
│ │ ├── phpstan.neon
│ │ ├── phpunit.xml
│ │ ├── resources/
│ │ │ └── navigation.php
│ │ ├── routes/
│ │ │ └── web.php
│ │ ├── src/
│ │ │ ├── Actions/
│ │ │ │ └── ResolveDataRetention.php
│ │ │ ├── Concerns/
│ │ │ │ └── HasDataRetention.php
│ │ │ ├── Contracts/
│ │ │ │ └── ResolvesDataRetention.php
│ │ │ ├── Data/
│ │ │ │ └── Data.php
│ │ │ ├── Facades/
│ │ │ │ └── Navigation.php
│ │ │ ├── Http/
│ │ │ │ └── Middleware/
│ │ │ │ └── TeamMiddleware.php
│ │ │ ├── Navigation/
│ │ │ │ ├── Navigation.php
│ │ │ │ └── NavigationItem.php
│ │ │ ├── Policies/
│ │ │ │ └── AllowAllPolicy.php
│ │ │ ├── Scopes/
│ │ │ │ └── TeamScope.php
│ │ │ ├── ServiceProvider.php
│ │ │ ├── Services/
│ │ │ │ └── TeamService.php
│ │ │ ├── Validation/
│ │ │ │ └── CanEnableRule.php
│ │ │ └── helpers.php
│ │ ├── testbench.yaml
│ │ └── tests/
│ │ └── TestCase.php
│ ├── crawler/
│ │ ├── .gitignore
│ │ ├── composer.json
│ │ ├── config/
│ │ │ └── crawler.php
│ │ ├── database/
│ │ │ └── migrations/
│ │ │ ├── 2024_09_06_213000_create_web_crawlers_table.php
│ │ │ ├── 2024_09_06_220000_create_web_crawled_urls_table.php
│ │ │ ├── 2025_01_18_220000_crawled_urls_url_length.php
│ │ │ ├── 2025_02_01_183000_web_crawlers_enabled_field.php
│ │ │ ├── 2025_04_07_200000_web_crawled_urls_url_hash.php
│ │ │ ├── 2025_09_28_100000_create_web_crawler_ignored_urls_table.php
│ │ │ └── 2025_09_29_190000_web_crawled_urls_ignored_field.php
│ │ ├── phpstan.neon
│ │ ├── phpunit.xml
│ │ ├── resources/
│ │ │ ├── navigation.php
│ │ │ └── views/
│ │ │ ├── components/
│ │ │ │ └── empty-states/
│ │ │ │ └── crawlers.blade.php
│ │ │ ├── crawler/
│ │ │ │ └── index.blade.php
│ │ │ ├── crawlers.blade.php
│ │ │ └── livewire/
│ │ │ ├── crawler/
│ │ │ │ └── dashboard.blade.php
│ │ │ └── crawler-form.blade.php
│ │ ├── routes/
│ │ │ └── web.php
│ │ ├── src/
│ │ │ ├── Actions/
│ │ │ │ ├── CollectCrawlerStats.php
│ │ │ │ ├── CrawlUrl.php
│ │ │ │ ├── ImportSitemaps.php
│ │ │ │ ├── ProcessCrawlerState.php
│ │ │ │ └── StartCrawler.php
│ │ │ ├── Commands/
│ │ │ │ ├── CollectCrawlerStatsCommand.php
│ │ │ │ ├── CrawlUrlsCommand.php
│ │ │ │ ├── ProcessCrawlerStatesCommand.php
│ │ │ │ ├── ScheduleCrawlersCommand.php
│ │ │ │ └── StartCrawlerCommand.php
│ │ │ ├── Enums/
│ │ │ │ ├── State.php
│ │ │ │ └── Status.php
│ │ │ ├── Events/
│ │ │ │ └── CrawlerFinishedEvent.php
│ │ │ ├── Exports/
│ │ │ │ └── IssuesExport.php
│ │ │ ├── Http/
│ │ │ │ └── Controllers/
│ │ │ │ └── CrawlerController.php
│ │ │ ├── Jobs/
│ │ │ │ ├── CollectCrawlerStatsJob.php
│ │ │ │ ├── CrawUrlJob.php
│ │ │ │ ├── ImportSitemapsJob.php
│ │ │ │ ├── ProcessCrawlerStateJob.php
│ │ │ │ └── StartCrawlerJob.php
│ │ │ ├── Listeners/
│ │ │ │ └── CrawlerFinishedListener.php
│ │ │ ├── Livewire/
│ │ │ │ ├── Crawler/
│ │ │ │ │ └── Dashboard.php
│ │ │ │ ├── CrawlerForm.php
│ │ │ │ ├── Crawlers.php
│ │ │ │ ├── Forms/
│ │ │ │ │ └── CrawlerForm.php
│ │ │ │ └── Tables/
│ │ │ │ ├── CrawledUrlsTable.php
│ │ │ │ ├── CrawlerTable.php
│ │ │ │ └── IssuesTable.php
│ │ │ ├── Models/
│ │ │ │ ├── CrawledUrl.php
│ │ │ │ ├── Crawler.php
│ │ │ │ └── IgnoredUrl.php
│ │ │ ├── Notifications/
│ │ │ │ ├── RatelimitedNotification.php
│ │ │ │ └── UrlIssuesNotification.php
│ │ │ ├── Observers/
│ │ │ │ ├── CrawledUrlObserver.php
│ │ │ │ ├── CrawlerObserver.php
│ │ │ │ └── IgnoredUrlObserver.php
│ │ │ ├── ServiceProvider.php
│ │ │ └── Validation/
│ │ │ ├── EqualDomainRule.php
│ │ │ └── ValidRegexLines.php
│ │ ├── testbench.yaml
│ │ └── tests/
│ │ ├── Actions/
│ │ │ ├── CrawUrlTest.php
│ │ │ ├── ProcessCrawlerStateTest.php
│ │ │ └── StartCrawlerTest.php
│ │ └── TestCase.php
│ ├── cve/
│ │ ├── .gitignore
│ │ ├── composer.json
│ │ ├── config/
│ │ │ └── cve.php
│ │ ├── database/
│ │ │ └── migrations/
│ │ │ ├── 2025_04_18_090000_create_cves_table.php
│ │ │ ├── 2025_04_18_100000_create_cve_monitors_table.php
│ │ │ ├── 2025_04_18_103000_create_cve_monitor_matches_table.php
│ │ │ ├── 2025_10_04_135717_add_fulltext_index_to_cves_description.php
│ │ │ └── 2025_10_04_135739_add_unique_index_to_cve_monitor_matches.php
│ │ ├── phpstan.neon
│ │ ├── phpunit.xml
│ │ ├── resources/
│ │ │ ├── navigation.php
│ │ │ └── views/
│ │ │ ├── components/
│ │ │ │ └── empty-states/
│ │ │ │ └── monitors.blade.php
│ │ │ ├── cve.blade.php
│ │ │ ├── index.blade.php
│ │ │ ├── livewire/
│ │ │ │ └── cve-monitor-form.blade.php
│ │ │ └── monitor.blade.php
│ │ ├── routes/
│ │ │ └── web.php
│ │ ├── src/
│ │ │ ├── Actions/
│ │ │ │ ├── ImportAllCves.php
│ │ │ │ ├── ImportCve.php
│ │ │ │ ├── ImportCves.php
│ │ │ │ ├── MatchCve.php
│ │ │ │ └── MatchExistingCves.php
│ │ │ ├── Commands/
│ │ │ │ ├── ImportAllCvesCommand.php
│ │ │ │ ├── ImportCvesCommand.php
│ │ │ │ ├── MatchCveCommand.php
│ │ │ │ └── MatchExistingCvesCommand.php
│ │ │ ├── Http/
│ │ │ │ └── Controllers/
│ │ │ │ ├── CveController.php
│ │ │ │ └── CveMonitorController.php
│ │ │ ├── Jobs/
│ │ │ │ ├── ImportAllCvesJob.php
│ │ │ │ ├── ImportCvesJob.php
│ │ │ │ ├── MatchCveJob.php
│ │ │ │ ├── MatchCveMonitorsJob.php
│ │ │ │ └── MatchExistingCvesJob.php
│ │ │ ├── Livewire/
│ │ │ │ ├── CveMonitorForm.php
│ │ │ │ ├── Forms/
│ │ │ │ │ └── CveMonitorForm.php
│ │ │ │ └── Tables/
│ │ │ │ ├── CveMonitorMatchesTable.php
│ │ │ │ └── CveMonitorTable.php
│ │ │ ├── Models/
│ │ │ │ ├── Cve.php
│ │ │ │ ├── CveMonitor.php
│ │ │ │ └── CveMonitorMatch.php
│ │ │ ├── Notifications/
│ │ │ │ ├── Conditions/
│ │ │ │ │ ├── KeywordCondition.php
│ │ │ │ │ └── ScoreCondition.php
│ │ │ │ └── CveMatchedNotification.php
│ │ │ ├── Observers/
│ │ │ │ └── CveMonitorObserver.php
│ │ │ └── ServiceProvider.php
│ │ ├── testbench.yaml
│ │ └── tests/
│ │ ├── Actions/
│ │ │ ├── ImportAllCvesTest.php
│ │ │ ├── ImportCveTest.php
│ │ │ ├── ImportCvesTest.php
│ │ │ └── MatchCveTest.php
│ │ ├── Models/
│ │ │ ├── CveMonitorMatchTest.php
│ │ │ ├── CveMonitorTest.php
│ │ │ └── CveTest.php
│ │ ├── Notifications/
│ │ │ └── CveMatchedNotificationTest.php
│ │ └── TestCase.php
│ ├── dns/
│ │ ├── .gitignore
│ │ ├── composer.json
│ │ ├── config/
│ │ │ └── dns.php
│ │ ├── database/
│ │ │ └── migrations/
│ │ │ ├── 2024_07_16_073000_create_dns_monitors_table.php
│ │ │ ├── 2024_07_16_073500_create_dns_monitor_history_table.php
│ │ │ ├── 2025_01_23_220000_dns_monitor_value_field_size.php
│ │ │ ├── 2025_02_01_180000_dns_monitor_enabled_field.php
│ │ │ └── 2025_03_22_090000_dns_monitor_value_field_nullable.php
│ │ ├── phpstan.neon
│ │ ├── phpunit.xml
│ │ ├── resources/
│ │ │ ├── navigation.php
│ │ │ └── views/
│ │ │ ├── components/
│ │ │ │ └── empty-states/
│ │ │ │ └── monitors.blade.php
│ │ │ └── livewire/
│ │ │ ├── dns-monitor-form.blade.php
│ │ │ ├── import.blade.php
│ │ │ ├── monitor/
│ │ │ │ └── dashboard.blade.php
│ │ │ ├── monitor-history.blade.php
│ │ │ └── monitors.blade.php
│ │ ├── routes/
│ │ │ └── web.php
│ │ ├── src/
│ │ │ ├── Actions/
│ │ │ │ ├── CheckDnsRecord.php
│ │ │ │ ├── ResolveGeoIp.php
│ │ │ │ └── ResolveRecord.php
│ │ │ ├── Client/
│ │ │ │ └── DnsClient.php
│ │ │ ├── Commands/
│ │ │ │ ├── CheckAllDnsRecordsCommand.php
│ │ │ │ ├── CheckDnsRecordCommand.php
│ │ │ │ └── ResolveGeoIpCommand.php
│ │ │ ├── Enums/
│ │ │ │ └── Type.php
│ │ │ ├── Http/
│ │ │ │ └── Controllers/
│ │ │ │ └── DnsMonitorController.php
│ │ │ ├── Jobs/
│ │ │ │ ├── CheckDnsRecordJob.php
│ │ │ │ └── ResolveGeoIpJob.php
│ │ │ ├── Livewire/
│ │ │ │ ├── DnsImport.php
│ │ │ │ ├── DnsMonitorForm.php
│ │ │ │ ├── DnsMonitorHistory.php
│ │ │ │ ├── DnsMonitors.php
│ │ │ │ ├── Forms/
│ │ │ │ │ └── DnsMonitorForm.php
│ │ │ │ ├── Monitor/
│ │ │ │ │ └── Dashboard.php
│ │ │ │ └── Tables/
│ │ │ │ ├── DnsMonitorHistoryTable.php
│ │ │ │ └── DnsMonitorTable.php
│ │ │ ├── Models/
│ │ │ │ ├── DnsMonitor.php
│ │ │ │ └── DnsMonitorHistory.php
│ │ │ ├── Notifications/
│ │ │ │ ├── Conditions/
│ │ │ │ │ └── RecordTypeCondition.php
│ │ │ │ ├── RecordChangedNotification.php
│ │ │ │ └── RecordNotResolvedNotification.php
│ │ │ ├── Observers/
│ │ │ │ └── GeoipObserver.php
│ │ │ ├── RecordParsers/
│ │ │ │ ├── A.php
│ │ │ │ ├── AAAA.php
│ │ │ │ ├── CAA.php
│ │ │ │ ├── CNAME.php
│ │ │ │ ├── MX.php
│ │ │ │ ├── NS.php
│ │ │ │ ├── RecordParser.php
│ │ │ │ ├── SOA.php
│ │ │ │ └── TXT.php
│ │ │ └── ServiceProvider.php
│ │ ├── testbench.yaml
│ │ └── tests/
│ │ ├── Actions/
│ │ │ └── CheckDnsRecordTest.php
│ │ └── TestCase.php
│ ├── frontend/
│ │ ├── .gitignore
│ │ ├── composer.json
│ │ ├── phpstan.neon
│ │ ├── phpunit.xml
│ │ ├── resources/
│ │ │ └── views/
│ │ │ ├── components/
│ │ │ │ ├── card.blade.php
│ │ │ │ ├── empty-state.blade.php
│ │ │ │ ├── mdash.blade.php
│ │ │ │ ├── modal/
│ │ │ │ │ ├── body.blade.php
│ │ │ │ │ ├── footer.blade.php
│ │ │ │ │ └── header.blade.php
│ │ │ │ ├── modal.blade.php
│ │ │ │ ├── page-header/
│ │ │ │ │ ├── actions/
│ │ │ │ │ │ └── index.blade.php
│ │ │ │ │ └── mobile-actions/
│ │ │ │ │ └── index.blade.php
│ │ │ │ ├── stats-card.blade.php
│ │ │ │ └── tabs/
│ │ │ │ ├── container.blade.php
│ │ │ │ ├── navigation.blade.php
│ │ │ │ ├── panel.blade.php
│ │ │ │ └── panels.blade.php
│ │ │ ├── integrations/
│ │ │ │ └── table/
│ │ │ │ ├── actions-column.blade.php
│ │ │ │ ├── chart-column.blade.php
│ │ │ │ ├── geoip-column.blade.php
│ │ │ │ ├── hover-column.blade.php
│ │ │ │ ├── link-column.blade.php
│ │ │ │ └── status-column.blade.php
│ │ │ └── livewire/
│ │ │ └── charts/
│ │ │ ├── base-chart-placeholder.blade.php
│ │ │ └── base-chart.blade.php
│ │ ├── src/
│ │ │ ├── Concerns/
│ │ │ │ └── DisplaysAlerts.php
│ │ │ ├── Enums/
│ │ │ │ └── AlertType.php
│ │ │ ├── Http/
│ │ │ │ └── Livewire/
│ │ │ │ └── BaseChart.php
│ │ │ ├── Integrations/
│ │ │ │ └── Table/
│ │ │ │ ├── Actions/
│ │ │ │ │ └── InlineAction.php
│ │ │ │ ├── ActionsColumn.php
│ │ │ │ ├── BaseTable.php
│ │ │ │ ├── ChartColumn.php
│ │ │ │ ├── Concerns/
│ │ │ │ │ └── HasInlineActions.php
│ │ │ │ ├── DateColumn.php
│ │ │ │ ├── Enums/
│ │ │ │ │ └── Status.php
│ │ │ │ ├── GeoIpColumn.php
│ │ │ │ ├── HoverColumn.php
│ │ │ │ ├── LinkColumn.php
│ │ │ │ └── StatusColumn.php
│ │ │ ├── ServiceProvider.php
│ │ │ ├── Traits/
│ │ │ │ └── CanBeInline.php
│ │ │ └── Validation/
│ │ │ ├── CleanDomainValidator.php
│ │ │ ├── CountryCode.php
│ │ │ ├── CronExpression.php
│ │ │ └── Fqdn.php
│ │ ├── testbench.yaml
│ │ └── tests/
│ │ └── TestCase.php
│ ├── healthchecks/
│ │ ├── .gitignore
│ │ ├── composer.json
│ │ ├── config/
│ │ │ └── healthchecks.php
│ │ ├── database/
│ │ │ └── migrations/
│ │ │ ├── 2025_11_06_200000_create_healthchecks_table.php
│ │ │ ├── 2025_11_06_201000_create_healthcheck_results_table.php
│ │ │ ├── 2025_11_06_202000_create_healthcheck_metrics_table.php
│ │ │ └── 2025_11_23_150400_update_healthcheck_results_columns.php
│ │ ├── phpstan.neon
│ │ ├── phpunit.xml
│ │ ├── resources/
│ │ │ ├── navigation.php
│ │ │ └── views/
│ │ │ ├── components/
│ │ │ │ └── empty-states/
│ │ │ │ └── healthchecks.blade.php
│ │ │ ├── healthcheck/
│ │ │ │ └── view.blade.php
│ │ │ ├── livewire/
│ │ │ │ ├── charts/
│ │ │ │ │ └── metric-chart.blade.php
│ │ │ │ ├── healthcheck-dashboard.blade.php
│ │ │ │ ├── healthcheck-form.blade.php
│ │ │ │ ├── healthcheck-setup.blade.php
│ │ │ │ ├── healthcheck-token-editor.blade.php
│ │ │ │ └── healthchecks.blade.php
│ │ │ └── platforms/
│ │ │ ├── drupal.blade.php
│ │ │ ├── endpoint.blade.php
│ │ │ ├── joomla.blade.php
│ │ │ ├── laravel.blade.php
│ │ │ ├── magento.blade.php
│ │ │ ├── statamic.blade.php
│ │ │ └── wordpress.blade.php
│ │ ├── routes/
│ │ │ ├── api.php
│ │ │ └── web.php
│ │ ├── src/
│ │ │ ├── Actions/
│ │ │ │ ├── AggregateMetrics.php
│ │ │ │ ├── CheckHealth.php
│ │ │ │ ├── CheckMetric.php
│ │ │ │ └── CheckResult.php
│ │ │ ├── Checks/
│ │ │ │ ├── Checker.php
│ │ │ │ ├── Endpoint.php
│ │ │ │ └── Module.php
│ │ │ ├── Commands/
│ │ │ │ ├── AggregateMetricsCommand.php
│ │ │ │ ├── CheckHealthcheckCommand.php
│ │ │ │ └── ScheduleHealthchecksCommand.php
│ │ │ ├── Enums/
│ │ │ │ ├── Status.php
│ │ │ │ └── Type.php
│ │ │ ├── Http/
│ │ │ │ ├── Controllers/
│ │ │ │ │ └── HealthcheckController.php
│ │ │ │ └── Livewire/
│ │ │ │ └── Charts/
│ │ │ │ └── MetricChart.php
│ │ │ ├── Jobs/
│ │ │ │ ├── AggregateMetricsJob.php
│ │ │ │ ├── CheckHealthcheckJob.php
│ │ │ │ ├── CheckMetricJob.php
│ │ │ │ └── CheckResultJob.php
│ │ │ ├── Livewire/
│ │ │ │ ├── Forms/
│ │ │ │ │ └── HealthcheckForm.php
│ │ │ │ ├── HealthcheckDashboard.php
│ │ │ │ ├── HealthcheckForm.php
│ │ │ │ ├── HealthcheckSetup.php
│ │ │ │ ├── HealthcheckTokenEditor.php
│ │ │ │ ├── Healthchecks.php
│ │ │ │ └── Tables/
│ │ │ │ ├── HealthcheckTable.php
│ │ │ │ └── ResultTable.php
│ │ │ ├── Models/
│ │ │ │ ├── Healthcheck.php
│ │ │ │ ├── Metric.php
│ │ │ │ └── Result.php
│ │ │ ├── Notifications/
│ │ │ │ ├── Conditions/
│ │ │ │ │ ├── CheckKeyCondition.php
│ │ │ │ │ ├── DiskFullInCondition.php
│ │ │ │ │ ├── MetricIncreaseNewValueCondition.php
│ │ │ │ │ ├── MetricIncreasePercentCondition.php
│ │ │ │ │ ├── MetricIncreaseTimeframeCondition.php
│ │ │ │ │ ├── MetricKeyCondition.php
│ │ │ │ │ ├── MetricUnitCondition.php
│ │ │ │ │ ├── MetricValueCondition.php
│ │ │ │ │ └── StatusCondition.php
│ │ │ │ ├── DiskUsageNotification.php
│ │ │ │ ├── HealthCheckFailedNotification.php
│ │ │ │ ├── MetricIncreasingNotification.php
│ │ │ │ ├── MetricNotification.php
│ │ │ │ └── MetricSpikeNotification.php
│ │ │ ├── Observers/
│ │ │ │ └── HealthcheckObserver.php
│ │ │ └── ServiceProvider.php
│ │ ├── testbench.yaml
│ │ └── tests/
│ │ ├── Actions/
│ │ │ ├── AggregateMetricsTest.php
│ │ │ ├── CheckMetricTest.php
│ │ │ └── CheckResultTest.php
│ │ └── TestCase.php
│ ├── lighthouse/
│ │ ├── .gitignore
│ │ ├── composer.json
│ │ ├── config/
│ │ │ └── lighthouse.php
│ │ ├── database/
│ │ │ └── migrations/
│ │ │ ├── 2024_05_11_105500_create_lighthouse_sites_table.php
│ │ │ ├── 2024_05_11_120000_create_lighthouse_results_table.php
│ │ │ ├── 2024_05_17_073000_lighthouse_results_aggregated_field_table.php
│ │ │ ├── 2024_06_22_160000_create_lighthouse_result_audits_table.php
│ │ │ ├── 2024_07_13_200000_lighthouse_site_rename_table.php
│ │ │ ├── 2025_02_01_173000_lighthouse_monitors_enabled_field.php
│ │ │ ├── 2025_02_03_190000_lighthouse_monitors_next_run_field.php
│ │ │ ├── 2025_02_07_210000_lighthouse_monitors_batch_fields.php
│ │ │ └── 2025_03_19_200000_lighthouse_monitors_run_started_at_field.php
│ │ ├── phpstan.neon
│ │ ├── phpunit.xml
│ │ ├── resources/
│ │ │ ├── navigation.php
│ │ │ └── views/
│ │ │ ├── components/
│ │ │ │ ├── average-difference.blade.php
│ │ │ │ └── empty-states/
│ │ │ │ └── monitors.blade.php
│ │ │ ├── lighthouse/
│ │ │ │ └── index.blade.php
│ │ │ ├── livewire/
│ │ │ │ ├── lighthouse-site-form.blade.php
│ │ │ │ ├── lighthouse-sites.blade.php
│ │ │ │ └── monitor/
│ │ │ │ └── dashboard.blade.php
│ │ │ └── result/
│ │ │ └── index.blade.php
│ │ ├── routes/
│ │ │ ├── api.php
│ │ │ └── web.php
│ │ ├── src/
│ │ │ ├── Actions/
│ │ │ │ ├── AggregateLighthouseBatch.php
│ │ │ │ ├── AggregateResults.php
│ │ │ │ ├── CalculateTimeDifference.php
│ │ │ │ ├── CheckLighthouseResult.php
│ │ │ │ ├── CheckLighthouseResultAudit.php
│ │ │ │ ├── ProcessLighthouseResult.php
│ │ │ │ └── RunLighthouse.php
│ │ │ ├── Commands/
│ │ │ │ ├── AggregateLighthouseBatchCommand.php
│ │ │ │ ├── AggregateLighthouseResultsCommand.php
│ │ │ │ ├── CheckLighthouseCommand.php
│ │ │ │ ├── LighthouseCommand.php
│ │ │ │ └── ScheduleLighthouseCommand.php
│ │ │ ├── Data/
│ │ │ │ └── CategoryResultDifferenceData.php
│ │ │ ├── Http/
│ │ │ │ └── Controllers/
│ │ │ │ ├── LighthouseCallbackController.php
│ │ │ │ ├── LighthouseMonitorController.php
│ │ │ │ └── LighthouseResultController.php
│ │ │ ├── Jobs/
│ │ │ │ ├── AggregateLighthouseBatchJob.php
│ │ │ │ ├── AggregateLighthouseResultsJob.php
│ │ │ │ ├── CheckLighthouseResultJob.php
│ │ │ │ └── RunLighthouseJob.php
│ │ │ ├── Livewire/
│ │ │ │ ├── Charts/
│ │ │ │ │ ├── LighthouseCategoriesChart.php
│ │ │ │ │ └── NumericLighthouseChart.php
│ │ │ │ ├── Forms/
│ │ │ │ │ └── LighthouseSiteForm.php
│ │ │ │ ├── LighthouseSiteForm.php
│ │ │ │ ├── LighthouseSites.php
│ │ │ │ ├── Monitor/
│ │ │ │ │ └── Dashboard.php
│ │ │ │ └── Tables/
│ │ │ │ ├── LighthouseMonitorsTable.php
│ │ │ │ ├── LighthouseResultAuditsTable.php
│ │ │ │ └── LighthouseResultsTable.php
│ │ │ ├── Models/
│ │ │ │ ├── LighthouseMonitor.php
│ │ │ │ ├── LighthouseResult.php
│ │ │ │ └── LighthouseResultAudit.php
│ │ │ ├── Notifications/
│ │ │ │ ├── CategoryScoreChangedNotification.php
│ │ │ │ ├── Conditions/
│ │ │ │ │ ├── Audit/
│ │ │ │ │ │ ├── AuditChangesCondition.php
│ │ │ │ │ │ ├── AuditDecreasesCondition.php
│ │ │ │ │ │ ├── AuditIncreasesCondition.php
│ │ │ │ │ │ ├── AuditPercentCondition.php
│ │ │ │ │ │ ├── AuditTypeCondition.php
│ │ │ │ │ │ └── AuditValueCondition.php
│ │ │ │ │ └── Category/
│ │ │ │ │ ├── AccessibilityPercentScoreCondition.php
│ │ │ │ │ ├── AccessibilityScoreDecreasesCondition.php
│ │ │ │ │ ├── AccessibilityScoreIncreasesCondition.php
│ │ │ │ │ ├── AccessibilityScoreValueCondition.php
│ │ │ │ │ ├── AverageScoreChangesCondition.php
│ │ │ │ │ ├── AverageScoreCondition.php
│ │ │ │ │ ├── AverageScoreDecreasesCondition.php
│ │ │ │ │ ├── AverageScoreIncreasesCondition.php
│ │ │ │ │ ├── AverageScoreValueCondition.php
│ │ │ │ │ ├── BestPracticesPercentScoreCondition.php
│ │ │ │ │ ├── BestPracticesScoreDecreasesCondition.php
│ │ │ │ │ ├── BestPracticesScoreIncreasesCondition.php
│ │ │ │ │ ├── BestPracticesScoreValueCondition.php
│ │ │ │ │ ├── PerformancePercentScoreCondition.php
│ │ │ │ │ ├── PerformanceScoreDecreasesCondition.php
│ │ │ │ │ ├── PerformanceScoreIncreasesCondition.php
│ │ │ │ │ ├── PerformanceScoreValueCondition.php
│ │ │ │ │ ├── ScoreCondition.php
│ │ │ │ │ ├── SeoPercentPercentScoreCondition.php
│ │ │ │ │ ├── SeoScoreDecreasesCondition.php
│ │ │ │ │ ├── SeoScoreIncreasesCondition.php
│ │ │ │ │ └── SeoScoreValueCondition.php
│ │ │ │ └── NumericAuditChangedNotification.php
│ │ │ ├── Observers/
│ │ │ │ └── LighthouseMonitorObserver.php
│ │ │ └── ServiceProvider.php
│ │ ├── testbench.yaml
│ │ └── tests/
│ │ ├── Actions/
│ │ │ ├── AggregateResultsTest.php
│ │ │ ├── CalculateTimeDifferenceTest.php
│ │ │ ├── CheckLighthouseResultAuditTest.php
│ │ │ ├── CheckLighthouseResultTest.php
│ │ │ └── RunLighthouseTest.php
│ │ ├── Data/
│ │ │ └── CategoryResultDifferenceDataTest.php
│ │ ├── Notifications/
│ │ │ └── Conditions/
│ │ │ ├── Audit/
│ │ │ │ ├── AuditChangeConditionsTest.php
│ │ │ │ └── AuditValueConditionTest.php
│ │ │ └── Category/
│ │ │ ├── AverageScoreChangeConditionsTest.php
│ │ │ ├── AverageScoreValueConditionTest.php
│ │ │ └── PerformanceScoreValueConditionTest.php
│ │ └── TestCase.php
│ ├── notifications/
│ │ ├── .gitignore
│ │ ├── composer.json
│ │ ├── config/
│ │ │ └── notifications.php
│ │ ├── database/
│ │ │ └── migrations/
│ │ │ ├── 2024_02_25_110000_create_notification_triggers_table.php
│ │ │ ├── 2024_02_25_111000_create_notification_channels_table.php
│ │ │ ├── 2024_02_25_111000_create_notification_triggers_channels_table.php
│ │ │ ├── 2024_02_25_112000_create_notification_history_table.php
│ │ │ ├── 2024_04_04_193000_notification_trigger_all_channels_field.php
│ │ │ ├── 2024_04_12_193000_notification_enabled_field.php
│ │ │ ├── 2024_09_22_113000_notification_cooldown_field.php
│ │ │ ├── 2026_01_02_150000_add_name_to_notification_channels_table.php
│ │ │ └── 2026_01_02_151500_backfill_notification_channel_names.php
│ │ ├── phpstan.neon
│ │ ├── phpunit.xml
│ │ ├── resources/
│ │ │ ├── navigation.php
│ │ │ └── views/
│ │ │ ├── channels.blade.php
│ │ │ ├── components/
│ │ │ │ ├── condition-builder/
│ │ │ │ │ ├── condition.blade.php
│ │ │ │ │ ├── group.blade.php
│ │ │ │ │ └── type/
│ │ │ │ │ ├── number.blade.php
│ │ │ │ │ ├── select.blade.php
│ │ │ │ │ ├── static.blade.php
│ │ │ │ │ └── text.blade.php
│ │ │ │ └── empty-states/
│ │ │ │ └── channels.blade.php
│ │ │ ├── history.blade.php
│ │ │ ├── livewire/
│ │ │ │ ├── channels/
│ │ │ │ │ ├── configuration/
│ │ │ │ │ │ ├── discord.blade.php
│ │ │ │ │ │ ├── google-chat.blade.php
│ │ │ │ │ │ ├── mail.blade.php
│ │ │ │ │ │ ├── microsoft-teams.blade.php
│ │ │ │ │ │ ├── ntfy.blade.php
│ │ │ │ │ │ ├── slack.blade.php
│ │ │ │ │ │ ├── telegram.blade.php
│ │ │ │ │ │ └── webhook.blade.php
│ │ │ │ │ └── form.blade.php
│ │ │ │ └── notifications/
│ │ │ │ ├── condition-builder.blade.php
│ │ │ │ └── form.blade.php
│ │ │ ├── mails/
│ │ │ │ └── notification.blade.php
│ │ │ └── notifications.blade.php
│ │ ├── routes/
│ │ │ └── web.php
│ │ ├── src/
│ │ │ ├── Actions/
│ │ │ │ ├── CheckBurst.php
│ │ │ │ ├── CheckCooldown.php
│ │ │ │ └── CreateNotifications.php
│ │ │ ├── Channels/
│ │ │ │ ├── DiscordChannel.php
│ │ │ │ ├── GoogleChatChannel.php
│ │ │ │ ├── MailChannel.php
│ │ │ │ ├── MicrosoftTeamsChannel.php
│ │ │ │ ├── NotificationChannel.php
│ │ │ │ ├── NtfyChannel.php
│ │ │ │ ├── SlackChannel.php
│ │ │ │ ├── TelegramChannel.php
│ │ │ │ └── WebhookChannel.php
│ │ │ ├── Commands/
│ │ │ │ ├── CreateNotificationsCommand.php
│ │ │ │ ├── RenameConditionClassesCommand.php
│ │ │ │ └── TestNotificationCommand.php
│ │ │ ├── Concerns/
│ │ │ │ └── NotificationFake.php
│ │ │ ├── Conditions/
│ │ │ │ ├── Condition.php
│ │ │ │ ├── ConditionEngine.php
│ │ │ │ ├── FalseCondition.php
│ │ │ │ ├── SelectCondition.php
│ │ │ │ ├── StaticCondition.php
│ │ │ │ └── TrueCondition.php
│ │ │ ├── Contracts/
│ │ │ │ └── HasSite.php
│ │ │ ├── Enums/
│ │ │ │ ├── ConditionType.php
│ │ │ │ └── Level.php
│ │ │ ├── Facades/
│ │ │ │ └── NotificationRegistry.php
│ │ │ ├── Http/
│ │ │ │ ├── Controllers/
│ │ │ │ │ └── ChannelController.php
│ │ │ │ └── Livewire/
│ │ │ │ ├── ChannelForm.php
│ │ │ │ ├── Channels/
│ │ │ │ │ └── Configuration/
│ │ │ │ │ ├── ChannelConfiguration.php
│ │ │ │ │ ├── Discord.php
│ │ │ │ │ ├── GoogleChat.php
│ │ │ │ │ ├── Mail.php
│ │ │ │ │ ├── MicrosoftTeams.php
│ │ │ │ │ ├── Ntfy.php
│ │ │ │ │ ├── Slack.php
│ │ │ │ │ ├── Telegram.php
│ │ │ │ │ └── Webhook.php
│ │ │ │ ├── Forms/
│ │ │ │ │ ├── CreateChannelForm.php
│ │ │ │ │ └── CreateNotificationForm.php
│ │ │ │ ├── NotificationForm.php
│ │ │ │ ├── Notifications/
│ │ │ │ │ └── Conditions/
│ │ │ │ │ └── ConditionBuilder.php
│ │ │ │ └── Tables/
│ │ │ │ ├── ChannelTable.php
│ │ │ │ ├── HistoryTable.php
│ │ │ │ └── NotificationTable.php
│ │ │ ├── Jobs/
│ │ │ │ ├── CreateNotificationsJob.php
│ │ │ │ └── SendNotificationJob.php
│ │ │ ├── Mail/
│ │ │ │ └── NotificationMail.php
│ │ │ ├── Models/
│ │ │ │ ├── Channel.php
│ │ │ │ ├── History.php
│ │ │ │ └── Trigger.php
│ │ │ ├── Notifications/
│ │ │ │ ├── Notification.php
│ │ │ │ ├── NotificationRegistry.php
│ │ │ │ └── TestNotification.php
│ │ │ ├── Observers/
│ │ │ │ ├── ChannelObserver.php
│ │ │ │ └── TriggerObserver.php
│ │ │ ├── Scopes/
│ │ │ │ └── HistoryTeamScope.php
│ │ │ └── ServiceProvider.php
│ │ ├── testbench.yaml
│ │ └── tests/
│ │ ├── Channels/
│ │ │ ├── NtfyChannelTest.php
│ │ │ └── TelegramChannelTest.php
│ │ ├── Conditions/
│ │ │ └── ConditionEngineTest.php
│ │ ├── Fakes/
│ │ │ ├── Conditions/
│ │ │ │ ├── FalseCondition.php
│ │ │ │ └── TrueCondition.php
│ │ │ ├── FakeChannel.php
│ │ │ └── FakeNotification.php
│ │ ├── Models/
│ │ │ └── ChannelTest.php
│ │ ├── Notifications/
│ │ │ ├── NotificationRegistryTest.php
│ │ │ └── NotificationTest.php
│ │ └── TestCase.php
│ ├── onboarding/
│ │ ├── .gitignore
│ │ ├── composer.json
│ │ ├── config/
│ │ │ └── onboarding.php
│ │ ├── database/
│ │ │ └── migrations/
│ │ │ └── 2024_09_29_210000_create_team_onboarding_step_table.php
│ │ ├── phpstan.neon
│ │ ├── phpunit.xml
│ │ ├── resources/
│ │ │ └── views/
│ │ │ ├── complete.blade.php
│ │ │ ├── import-domains.blade.php
│ │ │ └── notification-channel.blade.php
│ │ ├── routes/
│ │ │ └── web.php
│ │ ├── src/
│ │ │ ├── Actions/
│ │ │ │ └── ShouldOnboard.php
│ │ │ ├── Http/
│ │ │ │ └── Middleware/
│ │ │ │ ├── OnlyOnboarding.php
│ │ │ │ └── RedirectToOnboard.php
│ │ │ ├── Livewire/
│ │ │ │ ├── Complete.php
│ │ │ │ ├── ImportDomains.php
│ │ │ │ └── NotificationChannel.php
│ │ │ ├── Models/
│ │ │ │ └── OnboardingStep.php
│ │ │ └── ServiceProvider.php
│ │ ├── testbench.yaml
│ │ └── tests/
│ │ └── TestCase.php
│ ├── settings/
│ │ ├── .gitignore
│ │ ├── composer.json
│ │ ├── config/
│ │ │ └── settings.php
│ │ ├── phpstan.neon
│ │ ├── phpunit.xml
│ │ ├── resources/
│ │ │ └── views/
│ │ │ ├── index.blade.php
│ │ │ └── tabs/
│ │ │ ├── profile.blade.php
│ │ │ ├── security.blade.php
│ │ │ └── team.blade.php
│ │ ├── routes/
│ │ │ └── web.php
│ │ ├── src/
│ │ │ ├── Livewire/
│ │ │ │ ├── Forms/
│ │ │ │ │ ├── ProfileForm.php
│ │ │ │ │ └── UpdatePasswordForm.php
│ │ │ │ ├── Settings.php
│ │ │ │ └── Tabs/
│ │ │ │ ├── Profile.php
│ │ │ │ ├── Security.php
│ │ │ │ └── Team.php
│ │ │ └── ServiceProvider.php
│ │ ├── testbench.yaml
│ │ └── tests/
│ │ └── TestCase.php
│ ├── sites/
│ │ ├── .gitignore
│ │ ├── composer.json
│ │ ├── config/
│ │ │ └── sites.php
│ │ ├── database/
│ │ │ └── migrations/
│ │ │ └── 2024_02_20_170000_create_sites_table.php
│ │ ├── phpstan.neon
│ │ ├── phpunit.xml
│ │ ├── resources/
│ │ │ ├── navigation.php
│ │ │ └── views/
│ │ │ ├── components/
│ │ │ │ ├── empty-states/
│ │ │ │ │ └── no-monitors.blade.php
│ │ │ │ └── site-card.blade.php
│ │ │ ├── livewire/
│ │ │ │ ├── form.blade.php
│ │ │ │ ├── import.blade.php
│ │ │ │ ├── sites.blade.php
│ │ │ │ └── tabs/
│ │ │ │ ├── certificate-monitor.blade.php
│ │ │ │ ├── crawler.blade.php
│ │ │ │ ├── dns-monitors.blade.php
│ │ │ │ ├── healthcheck-monitor.blade.php
│ │ │ │ ├── lighthouse-monitor.blade.php
│ │ │ │ └── uptime-monitor.blade.php
│ │ │ └── sites/
│ │ │ └── view.blade.php
│ │ ├── routes/
│ │ │ └── web.php
│ │ ├── src/
│ │ │ ├── Actions/
│ │ │ │ └── ImportSite.php
│ │ │ ├── Conditions/
│ │ │ │ └── SiteCondition.php
│ │ │ ├── Http/
│ │ │ │ ├── Controllers/
│ │ │ │ │ └── SiteController.php
│ │ │ │ └── Livewire/
│ │ │ │ ├── Forms/
│ │ │ │ │ └── CreateSiteForm.php
│ │ │ │ ├── ImportSites.php
│ │ │ │ ├── SiteForm.php
│ │ │ │ ├── Sites.php
│ │ │ │ ├── Tables/
│ │ │ │ │ └── SiteTable.php
│ │ │ │ └── Tabs/
│ │ │ │ ├── CertificateMonitor.php
│ │ │ │ ├── Crawler.php
│ │ │ │ ├── DnsMonitors.php
│ │ │ │ ├── HealthcheckMonitor.php
│ │ │ │ ├── LighthouseMonitors.php
│ │ │ │ └── UptimeMonitor.php
│ │ │ ├── Jobs/
│ │ │ │ └── ImportSiteJob.php
│ │ │ ├── Models/
│ │ │ │ └── Site.php
│ │ │ ├── Observers/
│ │ │ │ └── SiteObserver.php
│ │ │ └── ServiceProvider.php
│ │ ├── testbench.yaml
│ │ └── tests/
│ │ └── TestCase.php
│ ├── uptime/
│ │ ├── .gitignore
│ │ ├── composer.json
│ │ ├── config/
│ │ │ └── uptime.php
│ │ ├── database/
│ │ │ ├── factories/
│ │ │ │ └── MonitorFactory.php
│ │ │ └── migrations/
│ │ │ ├── 2024_02_21_190000_create_uptime_monitors_table.php
│ │ │ ├── 2024_02_21_190100_create_uptime_results_table.php
│ │ │ ├── 2024_02_21_190200_create_uptime_downtimes_table.php
│ │ │ ├── 2024_02_22_073000_create_uptime_results_aggregates_table.php
│ │ │ ├── 2024_05_21_170200_uptime_downtimes_data_field.php
│ │ │ ├── 2025_02_01_170000_uptime_monitors_enabled_field.php
│ │ │ ├── 2025_05_06_190000_uptime_monitors_schedule_fields.php
│ │ │ ├── 2025_10_05_080000_create_uptime_outposts_table.php
│ │ │ ├── 2025_10_06_181706_add_country_to_uptime_results_tables.php
│ │ │ ├── 2025_10_06_183423_add_location_to_uptime_monitors_table.php
│ │ │ ├── 2025_10_06_184619_add_country_to_uptime_monitors_table.php
│ │ │ ├── 2025_10_07_180857_add_geoip_fetched_at_to_uptime_monitors_table.php
│ │ │ ├── 2025_10_08_100000_add_closest_outpost_id_to_uptime_monitors_table.php
│ │ │ ├── 2025_10_19_152447_add_unavailable_at_to_uptime_outposts_table.php
│ │ │ ├── 2025_12_23_192903_add_geoip_automatic_to_uptime_monitors_table.php
│ │ │ ├── 2025_12_23_193500_add_geoip_automatic_to_uptime_outposts_table.php
│ │ │ └── 2025_12_27_142900_update_ping_monitor_types.php
│ │ ├── phpstan.neon
│ │ ├── phpunit.xml
│ │ ├── resources/
│ │ │ ├── navigation.php
│ │ │ └── views/
│ │ │ ├── components/
│ │ │ │ └── empty-states/
│ │ │ │ └── monitors.blade.php
│ │ │ ├── livewire/
│ │ │ │ ├── charts/
│ │ │ │ │ ├── column-latency-chart.blade.php
│ │ │ │ │ └── latency-chart.blade.php
│ │ │ │ ├── monitor/
│ │ │ │ │ ├── dashboard.blade.php
│ │ │ │ │ └── form.blade.php
│ │ │ │ └── uptime-monitors.blade.php
│ │ │ └── monitor/
│ │ │ └── view.blade.php
│ │ ├── routes/
│ │ │ ├── api.php
│ │ │ └── web.php
│ │ ├── src/
│ │ │ ├── Actions/
│ │ │ │ ├── AggregateResults.php
│ │ │ │ ├── CalculateUptimePercentage.php
│ │ │ │ ├── CheckLatency.php
│ │ │ │ ├── CheckUptime.php
│ │ │ │ ├── FetchGeolocation.php
│ │ │ │ └── Outpost/
│ │ │ │ ├── DetermineOutpost.php
│ │ │ │ ├── GenerateOutpostCertificate.php
│ │ │ │ ├── GenerateRootCertificate.php
│ │ │ │ └── RegisterOutpost.php
│ │ │ ├── Commands/
│ │ │ │ ├── AggregateResultsCommand.php
│ │ │ │ ├── CheckLatencyCommand.php
│ │ │ │ ├── CheckUnavailableOutpostsCommand.php
│ │ │ │ ├── CheckUptimeCommand.php
│ │ │ │ ├── GenerateRootCaCommand.php
│ │ │ │ └── ScheduleUptimeChecksCommand.php
│ │ │ ├── Data/
│ │ │ │ └── UptimeResult.php
│ │ │ ├── Enums/
│ │ │ │ ├── OutpostStatus.php
│ │ │ │ ├── State.php
│ │ │ │ └── Type.php
│ │ │ ├── Events/
│ │ │ │ ├── DowntimeEndEvent.php
│ │ │ │ ├── DowntimeStartEvent.php
│ │ │ │ └── UptimeCheckedEvent.php
│ │ │ ├── Http/
│ │ │ │ ├── Controllers/
│ │ │ │ │ ├── Api/
│ │ │ │ │ │ ├── OutpostController.php
│ │ │ │ │ │ └── OutpostIpController.php
│ │ │ │ │ └── UptimeMonitorController.php
│ │ │ │ ├── Livewire/
│ │ │ │ │ ├── Charts/
│ │ │ │ │ │ ├── ColumnLatencyChart.php
│ │ │ │ │ │ └── LatencyChart.php
│ │ │ │ │ ├── Forms/
│ │ │ │ │ │ └── CreateUptimeMonitorForm.php
│ │ │ │ │ ├── Monitor/
│ │ │ │ │ │ └── Dashboard.php
│ │ │ │ │ ├── Tables/
│ │ │ │ │ │ ├── DowntimeTable.php
│ │ │ │ │ │ └── MonitorTable.php
│ │ │ │ │ ├── UptimeMonitorForm.php
│ │ │ │ │ └── UptimeMonitors.php
│ │ │ │ └── Middleware/
│ │ │ │ ├── ExternalOutpostMiddleware.php
│ │ │ │ └── OutpostAuthMiddleware.php
│ │ │ ├── Jobs/
│ │ │ │ ├── AggregateResultsJob.php
│ │ │ │ ├── CheckUnavailableOutpostJob.php
│ │ │ │ ├── CheckUptimeJob.php
│ │ │ │ └── UpdateMonitorLocationJob.php
│ │ │ ├── Listeners/
│ │ │ │ ├── CheckLatencyListener.php
│ │ │ │ ├── DowntimeEndNotificationListener.php
│ │ │ │ └── DowntimeStartNotificationListener.php
│ │ │ ├── Models/
│ │ │ │ ├── Downtime.php
│ │ │ │ ├── Monitor.php
│ │ │ │ ├── Outpost.php
│ │ │ │ ├── Result.php
│ │ │ │ └── ResultAggregate.php
│ │ │ ├── Notifications/
│ │ │ │ ├── Conditions/
│ │ │ │ │ ├── ClosestCountryCondition.php
│ │ │ │ │ ├── CountryCondition.php
│ │ │ │ │ ├── LatencyMsCondition.php
│ │ │ │ │ └── LatencyPercentCondition.php
│ │ │ │ ├── DowntimeEndNotification.php
│ │ │ │ ├── DowntimeStartNotification.php
│ │ │ │ ├── LatencyChangedNotification.php
│ │ │ │ └── LatencyPeakNotification.php
│ │ │ ├── Observers/
│ │ │ │ ├── MonitorObserver.php
│ │ │ │ └── OutpostObserver.php
│ │ │ └── ServiceProvider.php
│ │ ├── testbench.yaml
│ │ └── tests/
│ │ ├── Fakes/
│ │ │ └── HandlerStatsResponse.php
│ │ ├── Feature/
│ │ │ ├── AggregateResultsTest.php
│ │ │ ├── DowntimeTest.php
│ │ │ └── UptimeTest.php
│ │ ├── TestCase.php
│ │ └── Unit/
│ │ ├── CalculateUptimePercentageTest.php
│ │ ├── DetermineOutpostPerformanceTest.php
│ │ ├── DetermineOutpostTest.php
│ │ ├── Enums/
│ │ │ └── TypeTest.php
│ │ ├── ExternalOutpostMiddlewareTest.php
│ │ ├── FetchGeolocationTest.php
│ │ ├── GenerateOutpostCertificateTest.php
│ │ ├── OutpostAuthMiddlewareTest.php
│ │ └── RegisterOutpostTest.php
│ └── users/
│ ├── .gitignore
│ ├── composer.json
│ ├── config/
│ │ └── users.php
│ ├── database/
│ │ ├── factories/
│ │ │ ├── TeamFactory.php
│ │ │ └── UserFactory.php
│ │ └── migrations/
│ │ ├── 2014_10_12_000000_create_users_table.php
│ │ ├── 2014_10_12_100000_create_password_reset_tokens_table.php
│ │ ├── 2014_10_12_200000_add_two_factor_columns_to_users_table.php
│ │ ├── 2020_05_21_100000_create_teams_table.php
│ │ ├── 2020_05_21_200000_create_team_user_table.php
│ │ ├── 2020_05_21_300000_create_team_invitations_table.php
│ │ └── 2024_05_18_100000_team_timezone_field.php
│ ├── phpstan.neon
│ ├── phpunit.xml
│ ├── routes/
│ │ ├── auth.php
│ │ └── web.php
│ ├── src/
│ │ ├── Actions/
│ │ │ ├── Fortify/
│ │ │ │ ├── CreateNewUser.php
│ │ │ │ ├── PasswordValidationRules.php
│ │ │ │ ├── ResetUserPassword.php
│ │ │ │ ├── UpdateUserPassword.php
│ │ │ │ └── UpdateUserProfileInformation.php
│ │ │ └── Jetstream/
│ │ │ ├── AddTeamMember.php
│ │ │ ├── CreateTeam.php
│ │ │ ├── DeleteTeam.php
│ │ │ ├── DeleteUser.php
│ │ │ ├── InviteTeamMember.php
│ │ │ ├── RemoveTeamMember.php
│ │ │ └── UpdateTeamName.php
│ │ ├── Http/
│ │ │ ├── Controllers/
│ │ │ │ └── SocialiteController.php
│ │ │ └── Middleware/
│ │ │ ├── EnsureEmailIsVerified.php
│ │ │ └── NoUserMiddleware.php
│ │ ├── Models/
│ │ │ ├── Membership.php
│ │ │ ├── Team.php
│ │ │ ├── TeamInvitation.php
│ │ │ └── User.php
│ │ ├── Notifications/
│ │ │ └── VerifyEmail.php
│ │ ├── Observers/
│ │ │ └── TeamObserver.php
│ │ ├── Policies/
│ │ │ └── TeamPolicy.php
│ │ ├── ServiceProvider.php
│ │ └── Validators/
│ │ └── RegistrationEnabledValidator.php
│ ├── testbench.yaml
│ └── tests/
│ └── TestCase.php
├── phpunit.xml
├── postcss.config.js
├── public/
│ ├── .htaccess
│ ├── index.php
│ ├── robots.txt
│ └── site.webmanifest
├── resources/
│ ├── css/
│ │ ├── app.css
│ │ └── tailwind.sources.css
│ ├── js/
│ │ ├── app.js
│ │ └── bootstrap.js
│ ├── lang/
│ │ └── en/
│ │ └── validation.php
│ ├── markdown/
│ │ ├── policy.md
│ │ └── terms.md
│ ├── navigation.php
│ └── views/
│ ├── api/
│ │ ├── api-token-manager.blade.php
│ │ └── index.blade.php
│ ├── auth/
│ │ ├── confirm-password.blade.php
│ │ ├── forgot-password.blade.php
│ │ ├── login.blade.php
│ │ ├── register.blade.php
│ │ ├── reset-password.blade.php
│ │ ├── two-factor-challenge.blade.php
│ │ └── verify-email.blade.php
│ ├── components/
│ │ ├── action-message.blade.php
│ │ ├── action-section.blade.php
│ │ ├── alert.blade.php
│ │ ├── alerts/
│ │ │ ├── danger.blade.php
│ │ │ ├── info.blade.php
│ │ │ ├── success.blade.php
│ │ │ └── warning.blade.php
│ │ ├── application-logo.blade.php
│ │ ├── application-mark.blade.php
│ │ ├── authentication-card-logo.blade.php
│ │ ├── authentication-card.blade.php
│ │ ├── banner.blade.php
│ │ ├── button.blade.php
│ │ ├── card.blade.php
│ │ ├── checkbox.blade.php
│ │ ├── confirmation-modal.blade.php
│ │ ├── confirms-password.blade.php
│ │ ├── create-button-dropdown.blade.php
│ │ ├── create-button.blade.php
│ │ ├── danger-button.blade.php
│ │ ├── dialog-modal.blade.php
│ │ ├── dropdown-link.blade.php
│ │ ├── dropdown.blade.php
│ │ ├── form/
│ │ │ ├── button.blade.php
│ │ │ ├── checkbox.blade.php
│ │ │ ├── dropdown-button.blade.php
│ │ │ ├── header.blade.php
│ │ │ ├── number.blade.php
│ │ │ ├── password.blade.php
│ │ │ ├── select.blade.php
│ │ │ ├── submit-button.blade.php
│ │ │ ├── text-list.blade.php
│ │ │ ├── text.blade.php
│ │ │ ├── textarea.blade.php
│ │ │ └── time.blade.php
│ │ ├── form-section.blade.php
│ │ ├── input-error.blade.php
│ │ ├── input.blade.php
│ │ ├── label.blade.php
│ │ ├── layout/
│ │ │ ├── sidebar/
│ │ │ │ ├── menu.blade.php
│ │ │ │ └── mobile-menu.blade.php
│ │ │ ├── sidebar.blade.php
│ │ │ ├── topbar.blade.php
│ │ │ └── user-profile-dropdown.blade.php
│ │ ├── modal.blade.php
│ │ ├── nav-link.blade.php
│ │ ├── page-header.blade.php
│ │ ├── password-group.blade.php
│ │ ├── responsive-nav-link.blade.php
│ │ ├── secondary-button.blade.php
│ │ ├── section-border.blade.php
│ │ ├── section-title.blade.php
│ │ ├── switchable-team.blade.php
│ │ └── validation-errors.blade.php
│ ├── dashboard.blade.php
│ ├── emails/
│ │ └── team-invitation.blade.php
│ ├── errors/
│ │ ├── 401.blade.php
│ │ ├── 402.blade.php
│ │ ├── 403.blade.php
│ │ ├── 404.blade.php
│ │ ├── 419.blade.php
│ │ ├── 429.blade.php
│ │ ├── 500.blade.php
│ │ ├── 503.blade.php
│ │ ├── layout.blade.php
│ │ └── minimal.blade.php
│ ├── layouts/
│ │ ├── app.blade.php
│ │ └── guest.blade.php
│ ├── policy.blade.php
│ ├── profile/
│ │ ├── delete-user-form.blade.php
│ │ ├── logout-other-browser-sessions-form.blade.php
│ │ ├── two-factor-authentication-form.blade.php
│ │ ├── update-password-form.blade.php
│ │ └── update-profile-information-form.blade.php
│ ├── teams/
│ │ ├── create-team-form.blade.php
│ │ ├── create.blade.php
│ │ ├── delete-team-form.blade.php
│ │ ├── show.blade.php
│ │ ├── team-member-manager.blade.php
│ │ └── update-team-name-form.blade.php
│ ├── terms.blade.php
│ └── vendor/
│ ├── livewire-table/
│ │ ├── columns/
│ │ │ ├── buttons/
│ │ │ │ └── copy.blade.php
│ │ │ ├── content/
│ │ │ │ ├── action.blade.php
│ │ │ │ ├── boolean.blade.php
│ │ │ │ ├── default.blade.php
│ │ │ │ └── image.blade.php
│ │ │ ├── footer/
│ │ │ │ └── default.blade.php
│ │ │ ├── header/
│ │ │ │ └── default.blade.php
│ │ │ └── search/
│ │ │ ├── boolean.blade.php
│ │ │ ├── date.blade.php
│ │ │ ├── default.blade.php
│ │ │ └── select.blade.php
│ │ ├── components/
│ │ │ ├── button.blade.php
│ │ │ ├── dropdown/
│ │ │ │ ├── content.blade.php
│ │ │ │ ├── divider.blade.php
│ │ │ │ ├── footer.blade.php
│ │ │ │ ├── header.blade.php
│ │ │ │ ├── index.blade.php
│ │ │ │ ├── menu/
│ │ │ │ │ ├── index.blade.php
│ │ │ │ │ └── item.blade.php
│ │ │ │ └── section.blade.php
│ │ │ ├── form/
│ │ │ │ ├── checkbox.blade.php
│ │ │ │ ├── group.blade.php
│ │ │ │ ├── input.blade.php
│ │ │ │ └── select.blade.php
│ │ │ ├── icon.blade.php
│ │ │ ├── notification/
│ │ │ │ ├── button.blade.php
│ │ │ │ └── index.blade.php
│ │ │ └── table/
│ │ │ ├── index.blade.php
│ │ │ ├── message.blade.php
│ │ │ ├── tbody.blade.php
│ │ │ ├── td.blade.php
│ │ │ ├── tfoot.blade.php
│ │ │ ├── th.blade.php
│ │ │ ├── thead.blade.php
│ │ │ └── tr.blade.php
│ │ ├── filters/
│ │ │ ├── boolean.blade.php
│ │ │ ├── date.blade.php
│ │ │ ├── filter.blade.php
│ │ │ └── select.blade.php
│ │ ├── icons/
│ │ │ ├── arrow-path.blade.php
│ │ │ ├── backspace.blade.php
│ │ │ ├── check-circle.blade.php
│ │ │ ├── check.blade.php
│ │ │ ├── chevron-down.blade.php
│ │ │ ├── chevron-left.blade.php
│ │ │ ├── chevron-right.blade.php
│ │ │ ├── chevron-up-down.blade.php
│ │ │ ├── chevron-up.blade.php
│ │ │ ├── clipboard-document-check.blade.php
│ │ │ ├── clipboard-document.blade.php
│ │ │ ├── clock.blade.php
│ │ │ ├── cog-6-tooth.blade.php
│ │ │ ├── ellipsis-vertical.blade.php
│ │ │ ├── eye.blade.php
│ │ │ ├── funnel.blade.php
│ │ │ ├── information-circle.blade.php
│ │ │ ├── list-bullet.blade.php
│ │ │ ├── magnifying-glass.blade.php
│ │ │ ├── min.blade.php
│ │ │ ├── play.blade.php
│ │ │ ├── plus.blade.php
│ │ │ ├── queue-list.blade.php
│ │ │ ├── view-columns.blade.php
│ │ │ └── x-mark.blade.php
│ │ ├── livewire/
│ │ │ └── livewire-table.blade.php
│ │ ├── pagination/
│ │ │ └── pagination.blade.php
│ │ ├── table/
│ │ │ └── table.blade.php
│ │ └── toolbar/
│ │ ├── buttons/
│ │ │ ├── clear-search.blade.php
│ │ │ └── reordering.blade.php
│ │ ├── dropdowns/
│ │ │ ├── actions.blade.php
│ │ │ ├── configuration.blade.php
│ │ │ ├── sections/
│ │ │ │ ├── actions.blade.php
│ │ │ │ ├── columns.blade.php
│ │ │ │ ├── configuration.blade.php
│ │ │ │ ├── filters.blade.php
│ │ │ │ ├── polling.blade.php
│ │ │ │ ├── results.blade.php
│ │ │ │ ├── suggestions.blade.php
│ │ │ │ └── trashed.blade.php
│ │ │ └── suggestions.blade.php
│ │ ├── loader.blade.php
│ │ ├── notification.blade.php
│ │ ├── search.blade.php
│ │ └── toolbar.blade.php
│ └── mail/
│ ├── html/
│ │ ├── button.blade.php
│ │ ├── footer.blade.php
│ │ ├── header.blade.php
│ │ ├── layout.blade.php
│ │ ├── message.blade.php
│ │ ├── panel.blade.php
│ │ ├── subcopy.blade.php
│ │ ├── table.blade.php
│ │ └── themes/
│ │ └── default.css
│ └── text/
│ ├── button.blade.php
│ ├── footer.blade.php
│ ├── header.blade.php
│ ├── layout.blade.php
│ ├── message.blade.php
│ ├── panel.blade.php
│ ├── subcopy.blade.php
│ └── table.blade.php
├── routes/
│ ├── api.php
│ ├── channels.php
│ ├── console.php
│ └── web.php
├── scripts/
│ ├── generate-tailwind-sources.mjs
│ └── package-quality.sh
├── storage/
│ ├── app/
│ │ └── .gitignore
│ ├── framework/
│ │ ├── .gitignore
│ │ ├── cache/
│ │ │ └── .gitignore
│ │ ├── sessions/
│ │ │ └── .gitignore
│ │ ├── testing/
│ │ │ └── .gitignore
│ │ └── views/
│ │ └── .gitignore
│ └── logs/
│ └── .gitignore
├── tests/
│ ├── Browser/
│ │ ├── Notifications/
│ │ │ ├── ChannelsFormTest.php
│ │ │ ├── ChannelsIndexTest.php
│ │ │ ├── NotificationsFormTest.php
│ │ │ └── NotificationsIndexTest.php
│ │ ├── Pages/
│ │ │ ├── HomePage.php
│ │ │ └── Page.php
│ │ ├── Sites/
│ │ │ ├── SitesFormTest.php
│ │ │ └── SitesIndexTest.php
│ │ ├── Uptime/
│ │ │ ├── UptimeFormTest.php
│ │ │ └── UptimeIndexTest.php
│ │ ├── console/
│ │ │ └── .gitignore
│ │ ├── screenshots/
│ │ │ └── .gitignore
│ │ └── source/
│ │ └── .gitignore
│ ├── CreatesApplication.php
│ ├── DuskTestCase.php
│ ├── Feature/
│ │ └── .gitkeep
│ ├── TestCase.php
│ └── Unit/
│ └── .gitkeep
└── vite.config.js
================================================
FILE CONTENTS
================================================
================================================
FILE: .editorconfig
================================================
root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 4
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
[*.md]
trim_trailing_whitespace = false
[*.{yml,yaml}]
indent_size = 2
[docker-compose.yml]
indent_size = 4
================================================
FILE: .gitattributes
================================================
* text=auto eol=lf
*.blade.php diff=html
*.css diff=css
*.html diff=html
*.md diff=markdown
*.php diff=php
/.github export-ignore
CHANGELOG.md export-ignore
.styleci.yml export-ignore
================================================
FILE: .github/workflows/code-style.yml
================================================
name: PHP Linting
on:
pull_request:
branches:
- 'feature/*'
push:
branches:
- 'main'
jobs:
phplint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "laravel-pint"
uses: aglipanci/laravel-pint-action@2.0.0
with:
preset: laravel
pintVersion: 1.21.2
================================================
FILE: .github/workflows/image.yml
================================================
name: Build and publish image
on:
workflow_dispatch:
push:
branches:
- 'develop'
- 'main'
jobs:
build-and-push-image:
if: ${{ github.event_name != 'pull_request' }}
runs-on: ubuntu-latest
permissions:
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: https://ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set image tag
id: tag
shell: bash
run: |
if [ "${GITHUB_REF}" = "refs/heads/main" ]; then
echo "tag=latest" >> "$GITHUB_OUTPUT"
else
echo "tag=dev" >> "$GITHUB_OUTPUT"
fi
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
push: true
tags: ghcr.io/govigilant/vigilant:${{ steps.tag.outputs.tag }}
================================================
FILE: .github/workflows/package-quality.yml
================================================
name: Package quality
on:
push:
branches: [main]
pull_request:
jobs:
get-packages:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v3
- id: set-matrix
run: |
packages=$(ls -d packages/*/ | sed 's|packages/||; s|/||' | jq -R -s -c 'split("\n")[:-1]')
echo "Detected packages: $packages"
echo "matrix=$packages" >> $GITHUB_OUTPUT
quality:
needs: get-packages
runs-on: ubuntu-latest
strategy:
matrix:
package: ${{ fromJson(needs.get-packages.outputs.matrix) }}
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.4'
extensions: dom, curl, libxml, mbstring, zip, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo
coverage: none
- name: Run quality check script
run: |
chmod +x ./scripts/package-quality.sh
./scripts/package-quality.sh "${{ matrix.package }}"
shell: bash
================================================
FILE: .github/workflows/release-image.yml
================================================
name: Build and publish release image
on:
release:
types: [published]
jobs:
build-and-push-release-image:
runs-on: ubuntu-latest
permissions:
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: https://ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image with release tag
uses: docker/build-push-action@v5
with:
push: true
tags: ghcr.io/govigilant/vigilant:${{ github.event.release.tag_name }}
================================================
FILE: .github/workflows/tests.yml
================================================
name: Tests
on: ['push', 'pull_request']
jobs:
tests:
runs-on: ubuntu-latest
name: Tests
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.4
extensions: dom, curl, libxml, mbstring, zip, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo
coverage: none
- name: Install dependencies
run: composer install --prefer-dist --no-interaction
- name: Execute tests
run: vendor/bin/phpunit
================================================
FILE: .gitignore
================================================
/.phpunit.cache
/node_modules
/public/build
/public/hot
/public/storage
/public/vendor
/public/js
/public/css
/storage/*.key
/vendor
.env
.env.backup
.env.production
.phpunit.result.cache
Homestead.json
Homestead.yaml
auth.json
npm-debug.log
yarn-error.log
/.fleet
/.idea
/.vscode
/caddy
frankenphp
frankenphp-worker.php
================================================
FILE: Dockerfile
================================================
FROM php:8.4-fpm-alpine
RUN apk add --no-cache \
bash \
git \
curl \
vim \
unzip \
nginx \
supervisor \
dcron \
su-exec \
nodejs \
npm \
libzip-dev \
libxml2-dev \
icu-dev \
libpng-dev \
libjpeg-turbo-dev \
freetype-dev \
pango \
linux-headers \
python3 \
py3-pip \
py3-cffi \
py3-brotli \
&& pip3 install --break-system-packages WeasyPrint
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
RUN docker-php-ext-configure gd --with-freetype --with-jpeg \
&& docker-php-ext-install \
pdo \
pdo_mysql \
sockets \
pcntl \
zip \
exif \
bcmath \
intl \
gd
RUN apk add --no-cache --virtual .build-deps autoconf g++ make \
&& pecl install redis \
&& docker-php-ext-enable redis \
&& apk del .build-deps
COPY . /app
WORKDIR /app
ENV COMPOSER_ALLOW_SUPERUSER=1
RUN composer install --no-dev --prefer-dist --no-interaction
RUN npm install
RUN npm run build
RUN mkdir -p /tmp/public/ \
&& cp -r /app/public/* /tmp/public/ \
&& chown -R www-data:www-data /app
COPY docker/nginx.conf /etc/nginx/http.d/default.conf
COPY docker/php-fpm.ini /usr/local/etc/php/conf.d/zzz-fpm-overrides.ini
COPY docker/www.conf /usr/local/etc/php-fpm.d/www.conf
# Ensure the socket directory exists and is writable
RUN mkdir -p /run && chown www-data:www-data /run
RUN /usr/bin/crontab /app/docker/crontab
ENTRYPOINT ["sh", "/app/docker/entrypoint.sh"]
================================================
FILE: LICENSE.md
================================================
GNU AFFERO GENERAL PUBLIC LICENSE
Version 3, 19 November 2007
Copyright (C) 2007 Free Software Foundation, Inc.
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU Affero General Public License is a free, copyleft license for
software and other kinds of works, specifically designed to ensure
cooperation with the community in the case of network server software.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
our General Public Licenses are intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
Developers that use our General Public Licenses protect your rights
with two steps: (1) assert copyright on the software, and (2) offer
you this License which gives you legal permission to copy, distribute
and/or modify the software.
A secondary benefit of defending all users' freedom is that
improvements made in alternate versions of the program, if they
receive widespread use, become available for other developers to
incorporate. Many developers of free software are heartened and
encouraged by the resulting cooperation. However, in the case of
software used on network servers, this result may fail to come about.
The GNU General Public License permits making a modified version and
letting the public access it on a server without ever releasing its
source code to the public.
The GNU Affero General Public License is designed specifically to
ensure that, in such cases, the modified source code becomes available
to the community. It requires the operator of a network server to
provide the source code of the modified version running there to the
users of that server. Therefore, public use of a modified version, on
a publicly accessible server, gives the public access to the source
code of the modified version.
An older license, called the Affero General Public License and
published by Affero, was designed to accomplish similar goals. This is
a different license, not a version of the Affero GPL, but Affero has
released a new version of the Affero GPL which permits relicensing under
this license.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU Affero General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Remote Network Interaction; Use with the GNU General Public License.
Notwithstanding any other provision of this License, if you modify the
Program, your modified version must prominently offer all users
interacting with it remotely through a computer network (if your version
supports such interaction) an opportunity to receive the Corresponding
Source of your version by providing access to the Corresponding Source
from a network server at no charge, through some standard or customary
means of facilitating copying of software. This Corresponding Source
shall include the Corresponding Source for any work covered by version 3
of the GNU General Public License that is incorporated pursuant to the
following paragraph.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the work with which it is combined will remain governed by version
3 of the GNU General Public License.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU Affero General Public License from time to time. Such new versions
will be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU Affero General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU Affero General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU Affero General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
Copyright (C)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see .
Also add information on how to contact you by electronic and paper mail.
If your software can interact with users remotely through a computer
network, you should also make sure that it provides a way for users to
get its source. For example, if your program is a web application, its
interface could display a "Source" link that leads users to an archive
of the code. There are many ways you could offer source, and different
solutions will be better for different programs; see section 13 for the
specific requirements.
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU AGPL, see
.
================================================
FILE: README.md
================================================
All-in-One Web Monitoring Tool
Vigilant: An application designed to monitor all aspects of your website
Monitor all aspects of your website, uptime, health, DNS, Lighthouse, broken links...
Get notified exactly where and when you want with customizable notifications.
Comes with sensible defaults to quickly get started but customizable to fit your needs.

## Getting Started with Vigilant
Quickly get started using the hosted version of Vigilant at [app.govigilant.io](https://app.govigilant.io).
Prefer to self-host?
Take a look at the [documentation](https://govigilant.io/documentation/welcome) on how to get started!
## Tech Stack
- Laravel
- Livewire
- TailwindCSS
- AlpineJS
- Redis
- MySQL
## License
Vigilant is open source under the GNU Affero General Public License Version 3 (AGPLv3) or any later version.
================================================
FILE: SECURITY.md
================================================
# Security Policy
## Introduction
Vigilant is committed to ensuring the security and integrity of our users' data. This security policy outlines our procedures for handling security vulnerabilities and our disclosure policy.
## Reporting Security Vulnerabilities
If you discover a security vulnerability in Vigilant, please report it to us privately via email to one of the maintainers:
* @VincentBean ([email](mailto:security@govigilant.io))
When reporting a security vulnerability, please provide as much detail as possible, including:
* A clear description of the vulnerability
* Steps to reproduce the vulnerability
* Any relevant code or configuration files
## Supported Versions
This project currently only supports the latest release. We recommend that users always use the latest version of Vigilant to ensure they have the latest security patches.
## Disclosure Guidelines
We follow a private disclosure policy. If you discover a security vulnerability, please report it to us privately via email to one of the maintainers listed above. We will respond promptly to reports of vulnerabilities and work to resolve them as quickly as possible.
We will not publicly disclose security vulnerabilities until a patch or fix is available to prevent malicious actors from exploiting the vulnerability before a fix is released.
## Security Vulnerability Response Process
We take security vulnerabilities seriously and will respond promptly to reports of vulnerabilities. Our response process includes:
* Investigating the report and verifying the vulnerability.
* Developing a patch or fix for the vulnerability.
* Releasing the patch or fix as soon as possible.
* Notifying users of the vulnerability and the patch or fix.
## Template Attribution
This SECURITY.md file is based on the [GitHub Security Policy Template](https://docs.github.com/en/code-security/getting-started/adding-a-security-policy-to-your-repository).
Thank you for helping to keep Vigilant secure!
================================================
FILE: app/Console/Kernel.php
================================================
command(AggregateResultsCommand::class)->hourly();
$schedule->command(ScheduleUptimeChecksCommand::class)->everySecond();
$schedule->command(CheckUnavailableOutpostsCommand::class)->everyFifteenMinutes();
// Healthchecks
$schedule->command(ScheduleHealthchecksCommand::class)->everySecond();
$schedule->command(AggregateMetricsCommand::class)->hourly();
// Lighthouse
$schedule->command(ScheduleLighthouseCommand::class)->everySecond();
$schedule->command(AggregateLighthouseResultsCommand::class)->daily();
// Dns
$schedule->command(CheckAllDnsRecordsCommand::class)->hourly();
// Crawler
$schedule->command(ScheduleCrawlersCommand::class)->everyMinute();
$schedule->command(CrawlUrlsCommand::class)->everyMinute();
$schedule->command(ProcessCrawlerStatesCommand::class)->everyMinute();
// Certificates
$schedule->command(CheckCertificatesCommand::class)->everyMinute();
// CVE
$schedule->command(ImportCvesCommand::class, ['now - 1 hour'])->everyThirtyMinutes();
// Notifications
$schedule->command(CreateNotificationsCommand::class)->daily();
$schedule->command('model:prune', [
'--model' => array_keys(config('core.data_retention')),
])->hourly();
}
protected function commands(): void
{
$this->load(__DIR__.'/Commands');
require base_path('routes/console.php');
}
}
================================================
FILE: app/Exceptions/Handler.php
================================================
*/
protected $dontFlash = [
'current_password',
'password',
'password_confirmation',
];
/**
* Register the exception handling callbacks for the application.
*/
public function register(): void
{
$this->reportable(function (Throwable $e) {
//
});
}
}
================================================
FILE: app/Http/Controllers/Controller.php
================================================
*/
protected $middleware = [
// \App\Http\Middleware\TrustHosts::class,
\App\Http\Middleware\TrustProxies::class,
\Illuminate\Http\Middleware\HandleCors::class,
\App\Http\Middleware\PreventRequestsDuringMaintenance::class,
\Illuminate\Foundation\Http\Middleware\ValidatePostSize::class,
\App\Http\Middleware\TrimStrings::class,
\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull::class,
];
/**
* The application's route middleware groups.
*
* @var array>
*/
protected $middlewareGroups = [
'web' => [
\App\Http\Middleware\EncryptCookies::class,
\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
\Illuminate\Session\Middleware\StartSession::class,
\Illuminate\View\Middleware\ShareErrorsFromSession::class,
\App\Http\Middleware\VerifyCsrfToken::class,
\Illuminate\Routing\Middleware\SubstituteBindings::class,
TeamMiddleware::class,
RedirectToOnboard::class,
EnsureEmailIsVerified::class,
],
'api' => [
// \Laravel\Sanctum\Http\Middleware\EnsureFrontendRequestsAreStateful::class,
\Illuminate\Routing\Middleware\ThrottleRequests::class.':api',
\Illuminate\Routing\Middleware\SubstituteBindings::class,
],
];
/**
* The application's middleware aliases.
* Aliases may be used instead of class names to conveniently assign middleware to routes and groups.
*
* @var array
*/
protected $middlewareAliases = [
'auth' => \App\Http\Middleware\Authenticate::class,
'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class,
'auth.session' => \Illuminate\Session\Middleware\AuthenticateSession::class,
'cache.headers' => \Illuminate\Http\Middleware\SetCacheHeaders::class,
'can' => \Illuminate\Auth\Middleware\Authorize::class,
'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class,
'password.confirm' => \Illuminate\Auth\Middleware\RequirePassword::class,
'precognitive' => \Illuminate\Foundation\Http\Middleware\HandlePrecognitiveRequests::class,
'signed' => \App\Http\Middleware\ValidateSignature::class,
'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class,
'verified' => EnsureEmailIsVerified::class,
];
public function addMiddlewareToGroup(string $group, string|array $middleware): void
{
$this->middlewareGroups[$group] = array_merge($this->middlewareGroups[$group], Arr::wrap($middleware));
}
}
================================================
FILE: app/Http/Middleware/Authenticate.php
================================================
expectsJson() ? null : route('login');
}
}
================================================
FILE: app/Http/Middleware/EncryptCookies.php
================================================
*/
protected $except = [
//
];
}
================================================
FILE: app/Http/Middleware/PreventRequestsDuringMaintenance.php
================================================
*/
protected $except = [
//
];
}
================================================
FILE: app/Http/Middleware/RedirectIfAuthenticated.php
================================================
check()) {
return redirect(RouteServiceProvider::HOME);
}
}
return $next($request);
}
}
================================================
FILE: app/Http/Middleware/TrimStrings.php
================================================
*/
protected $except = [
'current_password',
'password',
'password_confirmation',
];
}
================================================
FILE: app/Http/Middleware/TrustHosts.php
================================================
*/
public function hosts(): array
{
return [
$this->allSubdomainsOfApplicationUrl(),
];
}
}
================================================
FILE: app/Http/Middleware/TrustProxies.php
================================================
|string|null
*/
protected $proxies = '*';
/**
* The headers that should be used to detect proxies.
*
* @var int
*/
protected $headers =
Request::HEADER_X_FORWARDED_FOR |
Request::HEADER_X_FORWARDED_HOST |
Request::HEADER_X_FORWARDED_PORT |
Request::HEADER_X_FORWARDED_PROTO |
Request::HEADER_X_FORWARDED_AWS_ELB;
}
================================================
FILE: app/Http/Middleware/ValidateSignature.php
================================================
*/
protected $except = [
// 'fbclid',
// 'utm_campaign',
// 'utm_content',
// 'utm_medium',
// 'utm_source',
// 'utm_term',
];
}
================================================
FILE: app/Http/Middleware/VerifyCsrfToken.php
================================================
*/
protected $except = [
'paddle/*',
];
}
================================================
FILE: app/Providers/AppServiceProvider.php
================================================
*/
protected $policies = [
];
/**
* Register any authentication / authorization services.
*/
public function boot(): void
{
//
}
}
================================================
FILE: app/Providers/BroadcastServiceProvider.php
================================================
>
*/
protected $listen = [
Registered::class => [
SendEmailVerificationNotification::class,
],
];
/**
* Register any events for your application.
*/
public function boot(): void
{
//
}
/**
* Determine if events and listeners should be automatically discovered.
*/
public function shouldDiscoverEvents(): bool
{
return false;
}
}
================================================
FILE: app/Providers/FortifyServiceProvider.php
================================================
input(Fortify::username())).'|'.$request->ip());
return Limit::perMinute(5)->by($throttleKey);
});
RateLimiter::for('two-factor', function (Request $request) {
return Limit::perMinute(5)->by($request->session()->get('login.id'));
});
}
}
================================================
FILE: app/Providers/HorizonServiceProvider.php
================================================
configurePermissions();
Jetstream::createTeamsUsing(CreateTeam::class);
Jetstream::updateTeamNamesUsing(UpdateTeamName::class);
Jetstream::addTeamMembersUsing(AddTeamMember::class);
Jetstream::inviteTeamMembersUsing(InviteTeamMember::class);
Jetstream::removeTeamMembersUsing(RemoveTeamMember::class);
Jetstream::deleteTeamsUsing(DeleteTeam::class);
Jetstream::deleteUsersUsing(DeleteUser::class);
Jetstream::useUserModel(User::class);
Jetstream::useTeamModel(Team::class);
Jetstream::useTeamInvitationModel(TeamInvitation::class);
Jetstream::useMembershipModel(Membership::class);
}
/**
* Configure the roles and permissions that are available within the application.
*/
protected function configurePermissions(): void
{
Jetstream::defaultApiTokenPermissions(['read']);
Jetstream::role('admin', 'Administrator', [
'create',
'read',
'update',
'delete',
])->description('Administrator users can perform any action.');
}
}
================================================
FILE: app/Providers/RouteServiceProvider.php
================================================
by($request->user()?->id ?: $request->ip());
});
$this->routes(function () {
Route::middleware('api')
->prefix('api')
->group(base_path('routes/api.php'));
Route::middleware('web')
->group(base_path('routes/web.php'));
});
}
}
================================================
FILE: app/View/Components/AppLayout.php
================================================
make(Illuminate\Contracts\Console\Kernel::class);
$status = $kernel->handle(
$input = new Symfony\Component\Console\Input\ArgvInput,
new Symfony\Component\Console\Output\ConsoleOutput
);
/*
|--------------------------------------------------------------------------
| Shutdown The Application
|--------------------------------------------------------------------------
|
| Once Artisan has finished running, we will fire off the shutdown events
| so that any final work may be done by the application before we shut
| down the process. This is the last thing to happen to the request.
|
*/
$kernel->terminate($input, $status);
exit($status);
================================================
FILE: bootstrap/app.php
================================================
singleton(
Illuminate\Contracts\Http\Kernel::class,
App\Http\Kernel::class
);
$app->singleton(
Illuminate\Contracts\Console\Kernel::class,
App\Console\Kernel::class
);
$app->singleton(
Illuminate\Contracts\Debug\ExceptionHandler::class,
App\Exceptions\Handler::class
);
/*
|--------------------------------------------------------------------------
| Return The Application
|--------------------------------------------------------------------------
|
| This script returns the application instance. The instance is given to
| the calling script so we can separate the building of the instances
| from the actual running of the application and sending responses.
|
*/
return $app;
================================================
FILE: bootstrap/cache/.gitignore
================================================
*
!.gitignore
================================================
FILE: composer.json
================================================
{
"name": "laravel/laravel",
"type": "project",
"description": "Vigilant: All-in-one website monitoring",
"keywords": [
"monitoring",
"laravel",
"vigilant"
],
"license": "AGPL-3.0",
"require": {
"php": "^8.3",
"ext-dom": "*",
"blade-ui-kit/blade-heroicons": "^2.3",
"bluelibraries/dns": "@dev",
"codeat3/blade-carbon-icons": "^2.35",
"codeat3/blade-line-awesome-icons": "*",
"codeat3/blade-phosphor-icons": "^2.2",
"codeat3/blade-simple-icons": "^7.16",
"codeat3/blade-teeny-icons": "^1.9",
"govigilant/laravel-healthchecks": "^1.0",
"guzzlehttp/guzzle": "^7.2",
"laravel/framework": "^12.0",
"laravel/horizon": "^5.23",
"laravel/jetstream": "^5.0",
"laravel/sanctum": "^4.0",
"laravel/socialite": "^5.18",
"laravel/tinker": "^2.8",
"league/iso3166": "^4.3",
"livewire/livewire": "^3.0",
"mallardduck/blade-boxicons": "^2.4",
"ramonrietdijk/livewire-tables": "^6.0",
"vigilant/certificates": "@dev",
"vigilant/core": "@dev",
"vigilant/crawler": "@dev",
"vigilant/cve": "@dev",
"vigilant/dns": "@dev",
"vigilant/frontend": "@dev",
"vigilant/healthchecks": "@dev",
"vigilant/lighthouse": "@dev",
"vigilant/notifications": "@dev",
"vigilant/onboarding": "@dev",
"vigilant/settings": "@dev",
"vigilant/sites": "@dev",
"vigilant/uptime": "@dev",
"vigilant/users": "@dev"
},
"require-dev": {
"fakerphp/faker": "^1.9.1",
"laravel/dusk": "^8.1",
"laravel/pint": "^1.0",
"laravel/sail": "^1.18",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^8.1",
"phpunit/phpunit": "^11.0",
"spatie/laravel-ignition": "^2.0"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"post-install-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "path",
"url": "./packages/*"
},
{
"type": "vcs",
"url": "git@github.com:VincentBean/dns.git"
}
]
}
================================================
FILE: config/app.php
================================================
env('APP_NAME', 'Vigilant'),
/*
|--------------------------------------------------------------------------
| Application Environment
|--------------------------------------------------------------------------
|
| This value determines the "environment" your application is currently
| running in. This may determine how you prefer to configure various
| services the application utilizes. Set this in your ".env" file.
|
*/
'env' => env('APP_ENV', 'production'),
/*
|--------------------------------------------------------------------------
| Application Debug Mode
|--------------------------------------------------------------------------
|
| When your application is in debug mode, detailed error messages with
| stack traces will be shown on every error that occurs within your
| application. If disabled, a simple generic error page is shown.
|
*/
'debug' => (bool) env('APP_DEBUG', false),
/*
|--------------------------------------------------------------------------
| Application URL
|--------------------------------------------------------------------------
|
| This URL is used by the console to properly generate URLs when using
| the Artisan command line tool. You should set this to the root of
| your application so that it is used when running Artisan tasks.
|
*/
'url' => env('APP_URL', 'http://localhost'),
'asset_url' => env('ASSET_URL'),
/*
|--------------------------------------------------------------------------
| Application Timezone
|--------------------------------------------------------------------------
|
| Here you may specify the default timezone for your application, which
| will be used by the PHP date and date-time functions. We have gone
| ahead and set this to a sensible default for you out of the box.
|
*/
'timezone' => 'UTC',
/*
|--------------------------------------------------------------------------
| Application Locale Configuration
|--------------------------------------------------------------------------
|
| The application locale determines the default locale that will be used
| by the translation service provider. You are free to set this value
| to any of the locales which will be supported by the application.
|
*/
'locale' => 'en',
/*
|--------------------------------------------------------------------------
| Application Fallback Locale
|--------------------------------------------------------------------------
|
| The fallback locale determines the locale to use when the current one
| is not available. You may change the value to correspond to any of
| the language folders that are provided through your application.
|
*/
'fallback_locale' => 'en',
/*
|--------------------------------------------------------------------------
| Faker Locale
|--------------------------------------------------------------------------
|
| This locale will be used by the Faker PHP library when generating fake
| data for your database seeds. For example, this will be used to get
| localized telephone numbers, street address information and more.
|
*/
'faker_locale' => 'en_US',
/*
|--------------------------------------------------------------------------
| Encryption Key
|--------------------------------------------------------------------------
|
| This key is used by the Illuminate encrypter service and should be set
| to a random, 32 character string, otherwise these encrypted strings
| will not be safe. Please do this before deploying an application!
|
*/
'key' => env('APP_KEY'),
'cipher' => 'AES-256-CBC',
/*
|--------------------------------------------------------------------------
| Maintenance Mode Driver
|--------------------------------------------------------------------------
|
| These configuration options determine the driver used to determine and
| manage Laravel's "maintenance mode" status. The "cache" driver will
| allow maintenance mode to be controlled across multiple machines.
|
| Supported drivers: "file", "cache"
|
*/
'maintenance' => [
'driver' => 'file',
// 'store' => 'redis',
],
/*
|--------------------------------------------------------------------------
| Autoloaded Service Providers
|--------------------------------------------------------------------------
|
| The service providers listed here will be automatically loaded on the
| request to your application. Feel free to add your own services to
| this array to grant expanded functionality to your applications.
|
*/
'providers' => ServiceProvider::defaultProviders()->merge([
/*
* Package Service Providers...
*/
/*
* Application Service Providers...
*/
App\Providers\AppServiceProvider::class,
App\Providers\AuthServiceProvider::class,
// App\Providers\BroadcastServiceProvider::class,
App\Providers\EventServiceProvider::class,
App\Providers\HorizonServiceProvider::class,
App\Providers\RouteServiceProvider::class,
App\Providers\FortifyServiceProvider::class,
App\Providers\JetstreamServiceProvider::class,
])->toArray(),
/*
|--------------------------------------------------------------------------
| Class Aliases
|--------------------------------------------------------------------------
|
| This array of class aliases will be registered when this application
| is started. However, feel free to register as many as you wish as
| the aliases are "lazy" loaded so they don't hinder performance.
|
*/
'aliases' => Facade::defaultAliases()->merge([
// 'Example' => App\Facades\Example::class,
])->toArray(),
];
================================================
FILE: config/auth.php
================================================
[
'guard' => 'web',
'passwords' => 'users',
],
/*
|--------------------------------------------------------------------------
| Authentication Guards
|--------------------------------------------------------------------------
|
| Next, you may define every authentication guard for your application.
| Of course, a great default configuration has been defined for you
| here which uses session storage and the Eloquent user provider.
|
| All authentication drivers have a user provider. This defines how the
| users are actually retrieved out of your database or other storage
| mechanisms used by this application to persist your user's data.
|
| Supported: "session"
|
*/
'guards' => [
'web' => [
'driver' => 'session',
'provider' => 'users',
],
],
/*
|--------------------------------------------------------------------------
| User Providers
|--------------------------------------------------------------------------
|
| All authentication drivers have a user provider. This defines how the
| users are actually retrieved out of your database or other storage
| mechanisms used by this application to persist your user's data.
|
| If you have multiple user tables or models you may configure multiple
| sources which represent each model / table. These sources may then
| be assigned to any extra authentication guards you have defined.
|
| Supported: "database", "eloquent"
|
*/
'providers' => [
'users' => [
'driver' => 'eloquent',
'model' => \Vigilant\Users\Models\User::class,
],
// 'users' => [
// 'driver' => 'database',
// 'table' => 'users',
// ],
],
/*
|--------------------------------------------------------------------------
| Resetting Passwords
|--------------------------------------------------------------------------
|
| You may specify multiple password reset configurations if you have more
| than one user table or model in the application and you want to have
| separate password reset settings based on the specific user types.
|
| The expiry time is the number of minutes that each reset token will be
| considered valid. This security feature keeps tokens short-lived so
| they have less time to be guessed. You may change this as needed.
|
| The throttle setting is the number of seconds a user must wait before
| generating more password reset tokens. This prevents the user from
| quickly generating a very large amount of password reset tokens.
|
*/
'passwords' => [
'users' => [
'provider' => 'users',
'table' => 'password_reset_tokens',
'expire' => 60,
'throttle' => 60,
],
],
/*
|--------------------------------------------------------------------------
| Password Confirmation Timeout
|--------------------------------------------------------------------------
|
| Here you may define the amount of seconds before a password confirmation
| times out and the user is prompted to re-enter their password via the
| confirmation screen. By default, the timeout lasts for three hours.
|
*/
'password_timeout' => 10800,
];
================================================
FILE: config/broadcasting.php
================================================
env('BROADCAST_DRIVER', 'null'),
/*
|--------------------------------------------------------------------------
| Broadcast Connections
|--------------------------------------------------------------------------
|
| Here you may define all of the broadcast connections that will be used
| to broadcast events to other systems or over websockets. Samples of
| each available type of connection are provided inside this array.
|
*/
'connections' => [
'pusher' => [
'driver' => 'pusher',
'key' => env('PUSHER_APP_KEY'),
'secret' => env('PUSHER_APP_SECRET'),
'app_id' => env('PUSHER_APP_ID'),
'options' => [
'cluster' => env('PUSHER_APP_CLUSTER'),
'host' => env('PUSHER_HOST') ?: 'api-'.env('PUSHER_APP_CLUSTER', 'mt1').'.pusher.com',
'port' => env('PUSHER_PORT', 443),
'scheme' => env('PUSHER_SCHEME', 'https'),
'encrypted' => true,
'useTLS' => env('PUSHER_SCHEME', 'https') === 'https',
],
'client_options' => [
// Guzzle client options: https://docs.guzzlephp.org/en/stable/request-options.html
],
],
'ably' => [
'driver' => 'ably',
'key' => env('ABLY_KEY'),
],
'redis' => [
'driver' => 'redis',
'connection' => 'default',
],
'log' => [
'driver' => 'log',
],
'null' => [
'driver' => 'null',
],
],
];
================================================
FILE: config/cache.php
================================================
env('CACHE_DRIVER', 'redis'),
/*
|--------------------------------------------------------------------------
| Cache Stores
|--------------------------------------------------------------------------
|
| Here you may define all of the cache "stores" for your application as
| well as their drivers. You may even define multiple stores for the
| same cache driver to group types of items stored in your caches.
|
| Supported drivers: "apc", "array", "database", "file",
| "memcached", "redis", "dynamodb", "octane", "null"
|
*/
'stores' => [
'apc' => [
'driver' => 'apc',
],
'array' => [
'driver' => 'array',
'serialize' => false,
],
'database' => [
'driver' => 'database',
'table' => 'cache',
'connection' => null,
'lock_connection' => null,
],
'file' => [
'driver' => 'file',
'path' => storage_path('framework/cache/data'),
'lock_path' => storage_path('framework/cache/data'),
],
'memcached' => [
'driver' => 'memcached',
'persistent_id' => env('MEMCACHED_PERSISTENT_ID'),
'sasl' => [
env('MEMCACHED_USERNAME'),
env('MEMCACHED_PASSWORD'),
],
'options' => [
// Memcached::OPT_CONNECT_TIMEOUT => 2000,
],
'servers' => [
[
'host' => env('MEMCACHED_HOST', '127.0.0.1'),
'port' => env('MEMCACHED_PORT', 11211),
'weight' => 100,
],
],
],
'redis' => [
'driver' => 'redis',
'connection' => 'cache',
'lock_connection' => 'default',
],
'dynamodb' => [
'driver' => 'dynamodb',
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
'table' => env('DYNAMODB_CACHE_TABLE', 'cache'),
'endpoint' => env('DYNAMODB_ENDPOINT'),
],
'octane' => [
'driver' => 'octane',
],
],
/*
|--------------------------------------------------------------------------
| Cache Key Prefix
|--------------------------------------------------------------------------
|
| When utilizing the APC, database, memcached, Redis, or DynamoDB cache
| stores there might be other applications using the same cache. For
| that reason, you may prefix every cache key to avoid collisions.
|
*/
'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'),
];
================================================
FILE: config/cors.php
================================================
['api/*', 'sanctum/csrf-cookie'],
'allowed_methods' => ['*'],
'allowed_origins' => ['*'],
'allowed_origins_patterns' => [],
'allowed_headers' => ['*'],
'exposed_headers' => [],
'max_age' => 0,
'supports_credentials' => false,
];
================================================
FILE: config/database.php
================================================
env('DB_CONNECTION', 'mysql'),
/*
|--------------------------------------------------------------------------
| Database Connections
|--------------------------------------------------------------------------
|
| Here are each of the database connections setup for your application.
| Of course, examples of configuring each database platform that is
| supported by Laravel is shown below to make development simple.
|
|
| All database work in Laravel is done through the PHP PDO facilities
| so make sure you have the driver for your particular database of
| choice installed on your machine before you begin development.
|
*/
'connections' => [
'sqlite' => [
'driver' => 'sqlite',
'url' => env('DATABASE_URL'),
'database' => env('DB_DATABASE', database_path('database.sqlite')),
'prefix' => '',
'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true),
],
'mysql' => [
'driver' => 'mysql',
'url' => env('DATABASE_URL'),
'host' => env('DB_HOST', '127.0.0.1'),
'port' => env('DB_PORT', '3306'),
'database' => env('DB_DATABASE', 'forge'),
'username' => env('DB_USERNAME', 'forge'),
'password' => env('DB_PASSWORD', ''),
'unix_socket' => env('DB_SOCKET', ''),
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_unicode_ci',
'prefix' => '',
'prefix_indexes' => true,
'strict' => true,
'engine' => null,
'options' => extension_loaded('pdo_mysql') ? array_filter([
PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),
]) : [],
],
'pgsql' => [
'driver' => 'pgsql',
'url' => env('DATABASE_URL'),
'host' => env('DB_HOST', '127.0.0.1'),
'port' => env('DB_PORT', '5432'),
'database' => env('DB_DATABASE', 'forge'),
'username' => env('DB_USERNAME', 'forge'),
'password' => env('DB_PASSWORD', ''),
'charset' => 'utf8',
'prefix' => '',
'prefix_indexes' => true,
'search_path' => 'public',
'sslmode' => 'prefer',
],
'sqlsrv' => [
'driver' => 'sqlsrv',
'url' => env('DATABASE_URL'),
'host' => env('DB_HOST', 'localhost'),
'port' => env('DB_PORT', '1433'),
'database' => env('DB_DATABASE', 'forge'),
'username' => env('DB_USERNAME', 'forge'),
'password' => env('DB_PASSWORD', ''),
'charset' => 'utf8',
'prefix' => '',
'prefix_indexes' => true,
// 'encrypt' => env('DB_ENCRYPT', 'yes'),
// 'trust_server_certificate' => env('DB_TRUST_SERVER_CERTIFICATE', 'false'),
],
],
/*
|--------------------------------------------------------------------------
| Migration Repository Table
|--------------------------------------------------------------------------
|
| This table keeps track of all the migrations that have already run for
| your application. Using this information, we can determine which of
| the migrations on disk haven't actually been run in the database.
|
*/
'migrations' => 'migrations',
/*
|--------------------------------------------------------------------------
| Redis Databases
|--------------------------------------------------------------------------
|
| Redis is an open source, fast, and advanced key-value store that also
| provides a richer body of commands than a typical key-value system
| such as APC or Memcached. Laravel makes it easy to dig right in.
|
*/
'redis' => [
'client' => env('REDIS_CLIENT', 'phpredis'),
'options' => [
'cluster' => env('REDIS_CLUSTER', 'redis'),
'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'),
],
'default' => [
'url' => env('REDIS_URL'),
'host' => env('REDIS_HOST', '127.0.0.1'),
'username' => env('REDIS_USERNAME'),
'password' => env('REDIS_PASSWORD'),
'port' => env('REDIS_PORT', '6379'),
'database' => env('REDIS_DB', '0'),
],
'cache' => [
'url' => env('REDIS_URL'),
'host' => env('REDIS_HOST', '127.0.0.1'),
'username' => env('REDIS_USERNAME'),
'password' => env('REDIS_PASSWORD'),
'port' => env('REDIS_PORT', '6379'),
'database' => env('REDIS_CACHE_DB', '1'),
],
],
];
================================================
FILE: config/filesystems.php
================================================
env('FILESYSTEM_DISK', 'local'),
/*
|--------------------------------------------------------------------------
| Filesystem Disks
|--------------------------------------------------------------------------
|
| Here you may configure as many filesystem "disks" as you wish, and you
| may even configure multiple disks of the same driver. Defaults have
| been set up for each driver as an example of the required values.
|
| Supported Drivers: "local", "ftp", "sftp", "s3"
|
*/
'disks' => [
'local' => [
'driver' => 'local',
'root' => storage_path('app'),
'throw' => false,
],
'public' => [
'driver' => 'local',
'root' => storage_path('app/public'),
'url' => env('APP_URL').'/storage',
'visibility' => 'public',
'throw' => false,
],
's3' => [
'driver' => 's3',
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION'),
'bucket' => env('AWS_BUCKET'),
'url' => env('AWS_URL'),
'endpoint' => env('AWS_ENDPOINT'),
'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false),
'throw' => false,
],
],
/*
|--------------------------------------------------------------------------
| Symbolic Links
|--------------------------------------------------------------------------
|
| Here you may configure the symbolic links that will be created when the
| `storage:link` Artisan command is executed. The array keys should be
| the locations of the links and the values should be their targets.
|
*/
'links' => [
public_path('storage') => storage_path('app/public'),
],
];
================================================
FILE: config/fortify.php
================================================
'web',
/*
|--------------------------------------------------------------------------
| Fortify Password Broker
|--------------------------------------------------------------------------
|
| Here you may specify which password broker Fortify can use when a user
| is resetting their password. This configured value should match one
| of your password brokers setup in your "auth" configuration file.
|
*/
'passwords' => 'users',
/*
|--------------------------------------------------------------------------
| Username / Email
|--------------------------------------------------------------------------
|
| This value defines which model attribute should be considered as your
| application's "username" field. Typically, this might be the email
| address of the users but you are free to change this value here.
|
| Out of the box, Fortify expects forgot password and reset password
| requests to have a field named 'email'. If the application uses
| another name for the field you may define it below as needed.
|
*/
'username' => 'email',
'email' => 'email',
/*
|--------------------------------------------------------------------------
| Lowercase Usernames
|--------------------------------------------------------------------------
|
| This value defines whether usernames should be lowercased before saving
| them in the database, as some database system string fields are case
| sensitive. You may disable this for your application if necessary.
|
*/
'lowercase_usernames' => true,
/*
|--------------------------------------------------------------------------
| Home Path
|--------------------------------------------------------------------------
|
| Here you may configure the path where users will get redirected during
| authentication or password reset when the operations are successful
| and the user is authenticated. You are free to change this value.
|
*/
'home' => '/',
/*
|--------------------------------------------------------------------------
| Fortify Routes Prefix / Subdomain
|--------------------------------------------------------------------------
|
| Here you may specify which prefix Fortify will assign to all the routes
| that it registers with the application. If necessary, you may change
| subdomain under which all of the Fortify routes will be available.
|
*/
'prefix' => '',
'domain' => null,
/*
|--------------------------------------------------------------------------
| Fortify Routes Middleware
|--------------------------------------------------------------------------
|
| Here you may specify which middleware Fortify will assign to the routes
| that it registers with the application. If necessary, you may change
| these middleware but typically this provided default is preferred.
|
*/
'middleware' => ['web', NoUserMiddleware::class],
/*
|--------------------------------------------------------------------------
| Rate Limiting
|--------------------------------------------------------------------------
|
| By default, Fortify will throttle logins to five requests per minute for
| every email and IP address combination. However, if you would like to
| specify a custom rate limiter to call then you may specify it here.
|
*/
'limiters' => [
'login' => 'login',
'two-factor' => 'two-factor',
],
/*
|--------------------------------------------------------------------------
| Register View Routes
|--------------------------------------------------------------------------
|
| Here you may specify if the routes returning views should be disabled as
| you may not need them when building your own application. This may be
| especially true if you're writing a custom single-page application.
|
*/
'views' => true,
/*
|--------------------------------------------------------------------------
| Features
|--------------------------------------------------------------------------
|
| Some of the Fortify features are optional. You may disable the features
| by removing them from this array. You're free to only remove some of
| these features or you can even remove all of these if you need to.
|
*/
'features' => [
Features::registration(),
Features::resetPasswords(),
Features::emailVerification(),
Features::updateProfileInformation(),
Features::updatePasswords(),
Features::twoFactorAuthentication([
'confirm' => true,
'confirmPassword' => true,
// 'window' => 0,
]),
],
];
================================================
FILE: config/hashing.php
================================================
'bcrypt',
/*
|--------------------------------------------------------------------------
| Bcrypt Options
|--------------------------------------------------------------------------
|
| Here you may specify the configuration options that should be used when
| passwords are hashed using the Bcrypt algorithm. This will allow you
| to control the amount of time it takes to hash the given password.
|
*/
'bcrypt' => [
'rounds' => env('BCRYPT_ROUNDS', 12),
'verify' => true,
],
/*
|--------------------------------------------------------------------------
| Argon Options
|--------------------------------------------------------------------------
|
| Here you may specify the configuration options that should be used when
| passwords are hashed using the Argon algorithm. These will allow you
| to control the amount of time it takes to hash the given password.
|
*/
'argon' => [
'memory' => 65536,
'threads' => 1,
'time' => 4,
'verify' => true,
],
];
================================================
FILE: config/horizon.php
================================================
env('HORIZON_DOMAIN'),
/*
|--------------------------------------------------------------------------
| Horizon Path
|--------------------------------------------------------------------------
|
| This is the URI path where Horizon will be accessible from. Feel free
| to change this path to anything you like. Note that the URI will not
| affect the paths of its internal API that aren't exposed to users.
|
*/
'path' => env('HORIZON_PATH', 'horizon'),
/*
|--------------------------------------------------------------------------
| Horizon Redis Connection
|--------------------------------------------------------------------------
|
| This is the name of the Redis connection where Horizon will store the
| meta information required for it to function. It includes the list
| of supervisors, failed jobs, job metrics, and other information.
|
*/
'use' => 'default',
/*
|--------------------------------------------------------------------------
| Horizon Redis Prefix
|--------------------------------------------------------------------------
|
| This prefix will be used when storing all Horizon data in Redis. You
| may modify the prefix when you are running multiple installations
| of Horizon on the same server so that they don't have problems.
|
*/
'prefix' => env(
'HORIZON_PREFIX',
Str::slug(env('APP_NAME', 'laravel'), '_').'_horizon:'
),
/*
|--------------------------------------------------------------------------
| Horizon Route Middleware
|--------------------------------------------------------------------------
|
| These middleware will get attached onto each Horizon route, giving you
| the chance to add your own middleware to this list or change any of
| the existing middleware. Or, you can simply stick with this list.
|
*/
'middleware' => ['web'],
/*
|--------------------------------------------------------------------------
| Queue Wait Time Thresholds
|--------------------------------------------------------------------------
|
| This option allows you to configure when the LongWaitDetected event
| will be fired. Every connection / queue combination may have its
| own, unique threshold (in seconds) before this event is fired.
|
*/
'waits' => [
'redis:default' => 60,
],
/*
|--------------------------------------------------------------------------
| Job Trimming Times
|--------------------------------------------------------------------------
|
| Here you can configure for how long (in minutes) you desire Horizon to
| persist the recent and failed jobs. Typically, recent jobs are kept
| for one hour while all failed jobs are stored for an entire week.
|
*/
'trim' => [
'recent' => 1440,
'pending' => 1440,
'completed' => 60,
'recent_failed' => 10080,
'failed' => 10080,
'monitored' => 10080,
],
/*
|--------------------------------------------------------------------------
| Silenced Jobs
|--------------------------------------------------------------------------
|
| Silencing a job will instruct Horizon to not place the job in the list
| of completed jobs within the Horizon dashboard. This setting may be
| used to fully remove any noisy jobs from the completed jobs list.
|
*/
'silenced' => [
// App\Jobs\ExampleJob::class,
],
/*
|--------------------------------------------------------------------------
| Metrics
|--------------------------------------------------------------------------
|
| Here you can configure how many snapshots should be kept to display in
| the metrics graph. This will get used in combination with Horizon's
| `horizon:snapshot` schedule to define how long to retain metrics.
|
*/
'metrics' => [
'trim_snapshots' => [
'job' => 24,
'queue' => 24,
],
],
/*
|--------------------------------------------------------------------------
| Fast Termination
|--------------------------------------------------------------------------
|
| When this option is enabled, Horizon's "terminate" command will not
| wait on all of the workers to terminate unless the --wait option
| is provided. Fast termination can shorten deployment delay by
| allowing a new instance of Horizon to start while the last
| instance will continue to terminate each of its workers.
|
*/
'fast_termination' => false,
/*
|--------------------------------------------------------------------------
| Memory Limit (MB)
|--------------------------------------------------------------------------
|
| This value describes the maximum amount of memory the Horizon master
| supervisor may consume before it is terminated and restarted. For
| configuring these limits on your workers, see the next section.
|
*/
'memory_limit' => 64,
/*
|--------------------------------------------------------------------------
| Queue Worker Configuration
|--------------------------------------------------------------------------
|
| Here you may define the queue worker settings used by your application
| in all environments. These supervisors and settings handle all your
| queued jobs and will be provisioned by Horizon during deployment.
|
*/
'defaults' => [
'default' => [
'connection' => 'redis',
'queue' => ['default'],
'balance' => 'auto',
'autoScalingStrategy' => 'time',
'maxProcesses' => 1,
'maxTime' => 0,
'maxJobs' => 0,
'memory' => 128,
'tries' => 1,
'timeout' => 60,
'nice' => 0,
],
'uptime' => [
'connection' => 'redis',
'queue' => ['uptime'],
'balance' => 'auto',
'autoScalingStrategy' => 'time',
'minProcesses' => 2,
'maxProcesses' => 4,
'maxTime' => 0,
'maxJobs' => 0,
'memory' => 128,
'tries' => 1,
'timeout' => 60,
'nice' => 0,
],
'lighthouse' => [
'connection' => 'redis',
'queue' => ['lighthouse'],
'balance' => 'auto',
'autoScalingStrategy' => 'time',
'maxProcesses' => 1,
'maxTime' => 0,
'maxJobs' => 0,
'memory' => 128,
'tries' => 1,
'timeout' => 120,
'nice' => 0,
],
'dns' => [
'connection' => 'redis',
'queue' => ['dns'],
'balance' => 'auto',
'autoScalingStrategy' => 'time',
'maxProcesses' => 1,
'maxTime' => 0,
'maxJobs' => 0,
'memory' => 128,
'tries' => 1,
'timeout' => 30,
'nice' => 0,
],
'crawler' => [
'connection' => 'redis',
'queue' => ['crawler'],
'balance' => 'auto',
'autoScalingStrategy' => 'time',
'maxProcesses' => 5,
'maxTime' => 0,
'maxJobs' => 0,
'memory' => 128,
'tries' => 1,
'timeout' => 60,
'nice' => 0,
],
'certificates' => [
'connection' => 'redis',
'queue' => ['certificates'],
'balance' => 'auto',
'autoScalingStrategy' => 'time',
'maxProcesses' => 5,
'maxTime' => 0,
'maxJobs' => 0,
'memory' => 128,
'tries' => 1,
'timeout' => 30,
'nice' => 0,
],
'cve' => [
'connection' => 'redis',
'queue' => ['cve'],
'balance' => 'auto',
'autoScalingStrategy' => 'time',
'minProcesses' => 1,
'maxProcesses' => 2,
'maxTime' => 0,
'maxJobs' => 0,
'memory' => 512,
'tries' => 1,
'timeout' => 300,
'nice' => 0,
],
'healthchecks' => [
'connection' => 'redis',
'queue' => ['healthchecks'],
'balance' => 'auto',
'autoScalingStrategy' => 'time',
'minProcesses' => 1,
'maxProcesses' => 4,
'maxTime' => 0,
'maxJobs' => 0,
'memory' => 512,
'tries' => 1,
'timeout' => 300,
'nice' => 0,
],
'notifications' => [
'connection' => 'redis',
'queue' => ['notifications'],
'balance' => 'auto',
'autoScalingStrategy' => 'time',
'maxProcesses' => 2,
'maxTime' => 0,
'maxJobs' => 0,
'memory' => 128,
'tries' => 1,
'timeout' => 60,
'nice' => 0,
],
],
'environments' => [
'production' => [],
'test' => [],
'local' => [],
],
];
================================================
FILE: config/jetstream.php
================================================
'livewire',
/*
|--------------------------------------------------------------------------
| Jetstream Route Middleware
|--------------------------------------------------------------------------
|
| Here you may specify which middleware Jetstream will assign to the routes
| that it registers with the application. When necessary, you may modify
| these middleware; however, this default value is usually sufficient.
|
*/
'middleware' => ['web'],
'auth_session' => AuthenticateSession::class,
/*
|--------------------------------------------------------------------------
| Jetstream Guard
|--------------------------------------------------------------------------
|
| Here you may specify the authentication guard Jetstream will use while
| authenticating users. This value should correspond with one of your
| guards that is already present in your "auth" configuration file.
|
*/
'guard' => 'sanctum',
/*
|--------------------------------------------------------------------------
| Features
|--------------------------------------------------------------------------
|
| Some of Jetstream's features are optional. You may disable the features
| by removing them from this array. You're free to only remove some of
| these features or you can even remove all of these if you need to.
|
*/
'features' => [
// Features::termsAndPrivacyPolicy(),
// Features::profilePhotos(),
// Features::api(),
env('EDITION', 'ce') === 'ce' ? '' : Features::teams(['invitations' => true]),
Features::accountDeletion(),
],
/*
|--------------------------------------------------------------------------
| Profile Photo Disk
|--------------------------------------------------------------------------
|
| This configuration value determines the default disk that will be used
| when storing profile photos for your application's users. Typically
| this will be the "public" disk but you may adjust this if needed.
|
*/
'profile_photo_disk' => 'public',
];
================================================
FILE: config/livewire.php
================================================
'App\\Livewire',
/*
|---------------------------------------------------------------------------
| View Path
|---------------------------------------------------------------------------
|
| This value is used to specify where Livewire component Blade templates are
| stored when running file creation commands like `artisan make:livewire`.
| It is also used if you choose to omit a component's render() method.
|
*/
'view_path' => resource_path('views/livewire'),
/*
|---------------------------------------------------------------------------
| Layout
|---------------------------------------------------------------------------
| The view that will be used as the layout when rendering a single component
| as an entire page via `Route::get('/post/create', CreatePost::class);`.
| In this case, the view returned by CreatePost will render into $slot.
|
*/
'layout' => 'layouts.app',
/*
|---------------------------------------------------------------------------
| Lazy Loading Placeholder
|---------------------------------------------------------------------------
| Livewire allows you to lazy load components that would otherwise slow down
| the initial page load. Every component can have a custom placeholder or
| you can define the default placeholder view for all components below.
|
*/
'lazy_placeholder' => null,
/*
|---------------------------------------------------------------------------
| Temporary File Uploads
|---------------------------------------------------------------------------
|
| Livewire handles file uploads by storing uploads in a temporary directory
| before the file is stored permanently. All file uploads are directed to
| a global endpoint for temporary storage. You may configure this below:
|
*/
'temporary_file_upload' => [
'disk' => null, // Example: 'local', 's3' | Default: 'default'
'rules' => null, // Example: ['file', 'mimes:png,jpg'] | Default: ['required', 'file', 'max:12288'] (12MB)
'directory' => null, // Example: 'tmp' | Default: 'livewire-tmp'
'middleware' => null, // Example: 'throttle:5,1' | Default: 'throttle:60,1'
'preview_mimes' => [ // Supported file types for temporary pre-signed file URLs...
'png', 'gif', 'bmp', 'svg', 'wav', 'mp4',
'mov', 'avi', 'wmv', 'mp3', 'm4a',
'jpg', 'jpeg', 'mpga', 'webp', 'wma',
],
'max_upload_time' => 5, // Max duration (in minutes) before an upload is invalidated...
],
/*
|---------------------------------------------------------------------------
| Render On Redirect
|---------------------------------------------------------------------------
|
| This value determines if Livewire will run a component's `render()` method
| after a redirect has been triggered using something like `redirect(...)`
| Setting this to true will render the view once more before redirecting
|
*/
'render_on_redirect' => false,
/*
|---------------------------------------------------------------------------
| Eloquent Model Binding
|---------------------------------------------------------------------------
|
| Previous versions of Livewire supported binding directly to eloquent model
| properties using wire:model by default. However, this behavior has been
| deemed too "magical" and has therefore been put under a feature flag.
|
*/
'legacy_model_binding' => false,
/*
|---------------------------------------------------------------------------
| Auto-inject Frontend Assets
|---------------------------------------------------------------------------
|
| By default, Livewire automatically injects its JavaScript and CSS into the
| and of pages containing Livewire components. By disabling
| this behavior, you need to use @livewireStyles and @livewireScripts.
|
*/
'inject_assets' => true,
/*
|---------------------------------------------------------------------------
| Navigate (SPA mode)
|---------------------------------------------------------------------------
|
| By adding `wire:navigate` to links in your Livewire application, Livewire
| will prevent the default link handling and instead request those pages
| via AJAX, creating an SPA-like effect. Configure this behavior here.
|
*/
'navigate' => [
'show_progress_bar' => true,
'progress_bar_color' => '#AF3029',
],
/*
|---------------------------------------------------------------------------
| HTML Morph Markers
|---------------------------------------------------------------------------
|
| Livewire intelligently "morphs" existing HTML into the newly rendered HTML
| after each update. To make this process more reliable, Livewire injects
| "markers" into the rendered Blade surrounding @if, @class & @foreach.
|
*/
'inject_morph_markers' => true,
/*
|---------------------------------------------------------------------------
| Pagination Theme
|---------------------------------------------------------------------------
|
| When enabling Livewire's pagination feature by using the `WithPagination`
| trait, Livewire will use Tailwind templates to render pagination views
| on the page. If you want Bootstrap CSS, you can specify: "bootstrap"
|
*/
'pagination_theme' => 'tailwind',
];
================================================
FILE: config/logging.php
================================================
env('LOG_CHANNEL', 'daily'),
/*
|--------------------------------------------------------------------------
| Deprecations Log Channel
|--------------------------------------------------------------------------
|
| This option controls the log channel that should be used to log warnings
| regarding deprecated PHP and library features. This allows you to get
| your application ready for upcoming major versions of dependencies.
|
*/
'deprecations' => [
'channel' => env('LOG_DEPRECATIONS_CHANNEL', 'null'),
'trace' => false,
],
/*
|--------------------------------------------------------------------------
| Log Channels
|--------------------------------------------------------------------------
|
| Here you may configure the log channels for your application. Out of
| the box, Laravel uses the Monolog PHP logging library. This gives
| you a variety of powerful log handlers / formatters to utilize.
|
| Available Drivers: "single", "daily", "slack", "syslog",
| "errorlog", "monolog",
| "custom", "stack"
|
*/
'channels' => [
'stack' => [
'driver' => 'stack',
'channels' => ['single'],
'ignore_exceptions' => false,
],
'single' => [
'driver' => 'single',
'path' => storage_path('logs/laravel.log'),
'level' => env('LOG_LEVEL', 'info'),
'replace_placeholders' => true,
],
'daily' => [
'driver' => 'daily',
'path' => storage_path('logs/laravel.log'),
'level' => env('LOG_LEVEL', 'info'),
'days' => 14,
'replace_placeholders' => true,
],
'slack' => [
'driver' => 'slack',
'url' => env('LOG_SLACK_WEBHOOK_URL'),
'username' => 'Laravel Log',
'emoji' => ':boom:',
'level' => env('LOG_LEVEL', 'critical'),
'replace_placeholders' => true,
],
'papertrail' => [
'driver' => 'monolog',
'level' => env('LOG_LEVEL', 'debug'),
'handler' => env('LOG_PAPERTRAIL_HANDLER', SyslogUdpHandler::class),
'handler_with' => [
'host' => env('PAPERTRAIL_URL'),
'port' => env('PAPERTRAIL_PORT'),
'connectionString' => 'tls://'.env('PAPERTRAIL_URL').':'.env('PAPERTRAIL_PORT'),
],
'processors' => [PsrLogMessageProcessor::class],
],
'stderr' => [
'driver' => 'monolog',
'level' => env('LOG_LEVEL', 'debug'),
'handler' => StreamHandler::class,
'formatter' => env('LOG_STDERR_FORMATTER'),
'with' => [
'stream' => 'php://stderr',
],
'processors' => [PsrLogMessageProcessor::class],
],
'syslog' => [
'driver' => 'syslog',
'level' => env('LOG_LEVEL', 'debug'),
'facility' => LOG_USER,
'replace_placeholders' => true,
],
'errorlog' => [
'driver' => 'errorlog',
'level' => env('LOG_LEVEL', 'debug'),
'replace_placeholders' => true,
],
'null' => [
'driver' => 'monolog',
'handler' => NullHandler::class,
],
'emergency' => [
'path' => storage_path('logs/laravel.log'),
],
],
];
================================================
FILE: config/mail.php
================================================
env('MAIL_MAILER', 'smtp'),
/*
|--------------------------------------------------------------------------
| Mailer Configurations
|--------------------------------------------------------------------------
|
| Here you may configure all of the mailers used by your application plus
| their respective settings. Several examples have been configured for
| you and you are free to add your own as your application requires.
|
| Laravel supports a variety of mail "transport" drivers to be used while
| sending an e-mail. You will specify which one you are using for your
| mailers below. You are free to add additional mailers as required.
|
| Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2",
| "postmark", "log", "array", "failover", "roundrobin"
|
*/
'mailers' => [
'smtp' => [
'transport' => 'smtp',
'url' => env('MAIL_URL'),
'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
'port' => env('MAIL_PORT', 587),
'encryption' => env('MAIL_ENCRYPTION', 'tls'),
'username' => env('MAIL_USERNAME'),
'password' => env('MAIL_PASSWORD'),
'timeout' => null,
'local_domain' => env('MAIL_EHLO_DOMAIN'),
'verify_peer' => env('MAIL_VERIFY_PEER') === 'true',
],
'ses' => [
'transport' => 'ses',
],
'postmark' => [
'transport' => 'postmark',
// 'message_stream_id' => null,
// 'client' => [
// 'timeout' => 5,
// ],
],
'mailgun' => [
'transport' => 'mailgun',
// 'client' => [
// 'timeout' => 5,
// ],
],
'sendmail' => [
'transport' => 'sendmail',
'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'),
],
'log' => [
'transport' => 'log',
'channel' => env('MAIL_LOG_CHANNEL'),
],
'array' => [
'transport' => 'array',
],
'failover' => [
'transport' => 'failover',
'mailers' => [
'smtp',
'log',
],
],
'roundrobin' => [
'transport' => 'roundrobin',
'mailers' => [
'ses',
'postmark',
],
],
],
/*
|--------------------------------------------------------------------------
| Global "From" Address
|--------------------------------------------------------------------------
|
| You may wish for all e-mails sent by your application to be sent from
| the same address. Here, you may specify a name and address that is
| used globally for all e-mails that are sent by your application.
|
*/
'from' => [
'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
'name' => env('MAIL_FROM_NAME', 'Example'),
],
/*
|--------------------------------------------------------------------------
| Markdown Mail Settings
|--------------------------------------------------------------------------
|
| If you are using Markdown based email rendering, you may configure your
| theme and component paths here, allowing you to customize the design
| of the emails. Or, you may simply stick with the Laravel defaults!
|
*/
'markdown' => [
'theme' => 'default',
'paths' => [
resource_path('views/vendor/mail'),
],
],
];
================================================
FILE: config/queue.php
================================================
env('QUEUE_CONNECTION', 'redis'),
/*
|--------------------------------------------------------------------------
| Queue Connections
|--------------------------------------------------------------------------
|
| Here you may configure the connection information for each server that
| is used by your application. A default configuration has been added
| for each back-end shipped with Laravel. You are free to add more.
|
| Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null"
|
*/
'connections' => [
'sync' => [
'driver' => 'sync',
],
'database' => [
'driver' => 'database',
'table' => 'jobs',
'queue' => 'default',
'retry_after' => 90,
'after_commit' => false,
],
'beanstalkd' => [
'driver' => 'beanstalkd',
'host' => 'localhost',
'queue' => 'default',
'retry_after' => 90,
'block_for' => 0,
'after_commit' => false,
],
'sqs' => [
'driver' => 'sqs',
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'),
'queue' => env('SQS_QUEUE', 'default'),
'suffix' => env('SQS_SUFFIX'),
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
'after_commit' => false,
],
'redis' => [
'driver' => 'redis',
'connection' => 'default',
'queue' => env('REDIS_QUEUE', 'default'),
'retry_after' => 3600,
'block_for' => null,
'after_commit' => false,
],
],
/*
|--------------------------------------------------------------------------
| Job Batching
|--------------------------------------------------------------------------
|
| The following options configure the database and table that store job
| batching information. These options can be updated to any database
| connection and table which has been defined by your application.
|
*/
'batching' => [
'database' => env('DB_CONNECTION', 'mysql'),
'table' => 'job_batches',
],
/*
|--------------------------------------------------------------------------
| Failed Queue Jobs
|--------------------------------------------------------------------------
|
| These options configure the behavior of failed queue job logging so you
| can control which database and table are used to store the jobs that
| have failed. You may change them to any database / table you wish.
|
*/
'failed' => [
'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'),
'database' => env('DB_CONNECTION', 'mysql'),
'table' => 'failed_jobs',
],
];
================================================
FILE: config/sanctum.php
================================================
explode(',', env('SANCTUM_STATEFUL_DOMAINS', sprintf(
'%s%s',
'localhost,localhost:3000,127.0.0.1,127.0.0.1:8000,::1',
Sanctum::currentApplicationUrlWithPort()
))),
/*
|--------------------------------------------------------------------------
| Sanctum Guards
|--------------------------------------------------------------------------
|
| This array contains the authentication guards that will be checked when
| Sanctum is trying to authenticate a request. If none of these guards
| are able to authenticate the request, Sanctum will use the bearer
| token that's present on an incoming request for authentication.
|
*/
'guard' => ['web'],
/*
|--------------------------------------------------------------------------
| Expiration Minutes
|--------------------------------------------------------------------------
|
| This value controls the number of minutes until an issued token will be
| considered expired. This will override any values set in the token's
| "expires_at" attribute, but first-party sessions are not affected.
|
*/
'expiration' => null,
/*
|--------------------------------------------------------------------------
| Token Prefix
|--------------------------------------------------------------------------
|
| Sanctum can prefix new tokens in order to take advantage of numerous
| security scanning initiatives maintained by open source platforms
| that notify developers if they commit tokens into repositories.
|
| See: https://docs.github.com/en/code-security/secret-scanning/about-secret-scanning
|
*/
'token_prefix' => env('SANCTUM_TOKEN_PREFIX', ''),
/*
|--------------------------------------------------------------------------
| Sanctum Middleware
|--------------------------------------------------------------------------
|
| When authenticating your first-party SPA with Sanctum you may need to
| customize some of the middleware Sanctum uses while processing the
| request. You may change the middleware listed below as required.
|
*/
'middleware' => [
'authenticate_session' => Laravel\Sanctum\Http\Middleware\AuthenticateSession::class,
'encrypt_cookies' => App\Http\Middleware\EncryptCookies::class,
'verify_csrf_token' => App\Http\Middleware\VerifyCsrfToken::class,
],
];
================================================
FILE: config/services.php
================================================
[
'domain' => env('MAILGUN_DOMAIN'),
'secret' => env('MAILGUN_SECRET'),
'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'),
'scheme' => 'https',
],
'postmark' => [
'token' => env('POSTMARK_TOKEN'),
],
'ses' => [
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
],
'google' => [
'enabled' => env('GOOGLE_LOGIN_ENABLED', false),
'client_id' => env('GOOGLE_CLIENT_ID'),
'client_secret' => env('GOOGLE_CLIENT_SECRET'),
'redirect' => env('GOOGLE_REDIRECT_URI'),
],
];
================================================
FILE: config/session.php
================================================
env('SESSION_DRIVER', 'database'),
/*
|--------------------------------------------------------------------------
| Session Lifetime
|--------------------------------------------------------------------------
|
| Here you may specify the number of minutes that you wish the session
| to be allowed to remain idle before it expires. If you want them
| to immediately expire on the browser closing, set that option.
|
*/
'lifetime' => env('SESSION_LIFETIME', 1440),
'expire_on_close' => false,
/*
|--------------------------------------------------------------------------
| Session Encryption
|--------------------------------------------------------------------------
|
| This option allows you to easily specify that all of your session data
| should be encrypted before it is stored. All encryption will be run
| automatically by Laravel and you can use the Session like normal.
|
*/
'encrypt' => false,
/*
|--------------------------------------------------------------------------
| Session File Location
|--------------------------------------------------------------------------
|
| When using the native session driver, we need a location where session
| files may be stored. A default has been set for you but a different
| location may be specified. This is only needed for file sessions.
|
*/
'files' => storage_path('framework/sessions'),
/*
|--------------------------------------------------------------------------
| Session Database Connection
|--------------------------------------------------------------------------
|
| When using the "database" or "redis" session drivers, you may specify a
| connection that should be used to manage these sessions. This should
| correspond to a connection in your database configuration options.
|
*/
'connection' => env('SESSION_CONNECTION'),
/*
|--------------------------------------------------------------------------
| Session Database Table
|--------------------------------------------------------------------------
|
| When using the "database" session driver, you may specify the table we
| should use to manage the sessions. Of course, a sensible default is
| provided for you; however, you are free to change this as needed.
|
*/
'table' => 'sessions',
/*
|--------------------------------------------------------------------------
| Session Cache Store
|--------------------------------------------------------------------------
|
| While using one of the framework's cache driven session backends you may
| list a cache store that should be used for these sessions. This value
| must match with one of the application's configured cache "stores".
|
| Affects: "apc", "dynamodb", "memcached", "redis"
|
*/
'store' => env('SESSION_STORE'),
/*
|--------------------------------------------------------------------------
| Session Sweeping Lottery
|--------------------------------------------------------------------------
|
| Some session drivers must manually sweep their storage location to get
| rid of old sessions from storage. Here are the chances that it will
| happen on a given request. By default, the odds are 2 out of 100.
|
*/
'lottery' => [2, 100],
/*
|--------------------------------------------------------------------------
| Session Cookie Name
|--------------------------------------------------------------------------
|
| Here you may change the name of the cookie used to identify a session
| instance by ID. The name specified here will get used every time a
| new session cookie is created by the framework for every driver.
|
*/
'cookie' => env(
'SESSION_COOKIE',
Str::slug(env('APP_NAME', 'laravel'), '_').'_session'
),
/*
|--------------------------------------------------------------------------
| Session Cookie Path
|--------------------------------------------------------------------------
|
| The session cookie path determines the path for which the cookie will
| be regarded as available. Typically, this will be the root path of
| your application but you are free to change this when necessary.
|
*/
'path' => '/',
/*
|--------------------------------------------------------------------------
| Session Cookie Domain
|--------------------------------------------------------------------------
|
| Here you may change the domain of the cookie used to identify a session
| in your application. This will determine which domains the cookie is
| available to in your application. A sensible default has been set.
|
*/
'domain' => env('SESSION_DOMAIN'),
/*
|--------------------------------------------------------------------------
| HTTPS Only Cookies
|--------------------------------------------------------------------------
|
| By setting this option to true, session cookies will only be sent back
| to the server if the browser has a HTTPS connection. This will keep
| the cookie from being sent to you when it can't be done securely.
|
*/
'secure' => env('SESSION_SECURE_COOKIE'),
/*
|--------------------------------------------------------------------------
| HTTP Access Only
|--------------------------------------------------------------------------
|
| Setting this value to true will prevent JavaScript from accessing the
| value of the cookie and the cookie will only be accessible through
| the HTTP protocol. You are free to modify this option if needed.
|
*/
'http_only' => true,
/*
|--------------------------------------------------------------------------
| Same-Site Cookies
|--------------------------------------------------------------------------
|
| This option determines how your cookies behave when cross-site requests
| take place, and can be used to mitigate CSRF attacks. By default, we
| will set this value to "lax" since this is a secure default value.
|
| Supported: "lax", "strict", "none", null
|
*/
'same_site' => 'lax',
/*
|--------------------------------------------------------------------------
| Partitioned Cookies
|--------------------------------------------------------------------------
|
| Setting this value to true will tie the cookie to the top-level site for
| a cross-site context. Partitioned cookies are accepted by the browser
| when flagged "secure" and the Same-Site attribute is set to "none".
|
*/
'partitioned' => false,
];
================================================
FILE: config/view.php
================================================
[
resource_path('views'),
],
/*
|--------------------------------------------------------------------------
| Compiled View Path
|--------------------------------------------------------------------------
|
| This option determines where all the compiled Blade templates will be
| stored for your application. Typically, this is within the storage
| directory. However, as usual, you are free to change this value.
|
*/
'compiled' => env(
'VIEW_COMPILED_PATH',
realpath(storage_path('framework/views'))
),
];
================================================
FILE: database/.gitignore
================================================
*.sqlite*
================================================
FILE: database/migrations/2019_08_19_000000_create_failed_jobs_table.php
================================================
id();
$table->string('uuid')->unique();
$table->text('connection');
$table->text('queue');
$table->longText('payload');
$table->longText('exception');
$table->timestamp('failed_at')->useCurrent();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('failed_jobs');
}
};
================================================
FILE: database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php
================================================
id();
$table->morphs('tokenable');
$table->string('name');
$table->string('token', 64)->unique();
$table->text('abilities')->nullable();
$table->timestamp('last_used_at')->nullable();
$table->timestamp('expires_at')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('personal_access_tokens');
}
};
================================================
FILE: database/migrations/2024_02_18_184745_create_sessions_table.php
================================================
string('id')->primary();
$table->foreignId('user_id')->nullable()->index();
$table->string('ip_address', 45)->nullable();
$table->text('user_agent')->nullable();
$table->longText('payload');
$table->integer('last_activity')->index();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('sessions');
}
};
================================================
FILE: database/migrations/2024_03_23_092656_create_notifications_table.php
================================================
uuid('id')->primary();
$table->string('type');
$table->morphs('notifiable');
$table->text('data');
$table->timestamp('read_at')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('notifications');
}
};
================================================
FILE: database/seeders/DatabaseSeeder.php
================================================
create();
$latencyMin = 5;
$latencyMax = 20;
$currentDate = now();
for ($i = 0; $i < 72; $i++) {
$currentDate->subHour();
$monitor->aggregatedResults()->create([
'total_time' => rand($latencyMin, $latencyMax),
'created_at' => $currentDate,
'updated_at' => $currentDate,
]);
}
}
}
================================================
FILE: docker/crontab
================================================
* * * * * /usr/local/bin/php /app/artisan schedule:run >> /app/storage/logs/schedule.log 2>&1
================================================
FILE: docker/entrypoint.sh
================================================
#!/bin/sh
cp -f -r /tmp/public/* /app/public
mkdir -p /app/storage/framework/cache
mkdir -p /app/storage/framework/sessions
mkdir -p /app/storage/framework/views
mkdir -p /app/storage/logs
chown -R www-data:www-data /app/storage
if ! grep -q "^APP_KEY=" ".env" || [ -z "$(grep "^APP_KEY=" ".env" | cut -d '=' -f2)" ]; then
php artisan key:generate
fi
php artisan optimize:clear
php artisan migrate --force
php artisan storage:link
php artisan notifications:create
php artisan notifications:rename-classes
php artisan optimize
/usr/bin/supervisord -c /app/docker/supervisor/supervisor.conf
================================================
FILE: docker/horizon-entrypoint.sh
================================================
#!/bin/sh
mkdir -p /app/storage/framework/cache
mkdir -p /app/storage/framework/sessions
mkdir -p /app/storage/framework/views
mkdir -p /app/storage/logs
chown -R www-data:www-data /app/storage
exec su-exec www-data php artisan horizon
================================================
FILE: docker/nginx.conf
================================================
server {
listen 8000;
server_name _;
root /app/public;
index index.php;
access_log /app/storage/logs/nginx-access.log;
error_log /app/storage/logs/nginx-error.log;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 30;
keepalive_requests 1000;
gzip on;
gzip_comp_level 5;
gzip_min_length 256;
gzip_proxied any;
gzip_vary on;
gzip_types
application/javascript
application/json
application/xml
application/rss+xml
text/css
text/javascript
text/plain
text/xml
image/svg+xml;
location ~* \.(css|js|ico|gif|jpe?g|png|webp|avif|svg|woff2?|ttf|eot|otf)$ {
expires 30d;
access_log off;
add_header Cache-Control "public, immutable";
try_files $uri /index.php?$query_string;
}
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location = /index.php {
fastcgi_pass unix:/run/php-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
fastcgi_read_timeout 300;
fastcgi_buffering on;
fastcgi_buffer_size 16k;
fastcgi_buffers 16 16k;
fastcgi_busy_buffers_size 32k;
}
location ~ \.php$ {
return 404;
}
location ~ /\.ht {
deny all;
}
}
================================================
FILE: docker/php-fpm.ini
================================================
max_execution_time = 300
max_input_time = 60
memory_limit = 256M
expose_php = Off
display_errors = Off
log_errors = On
error_log = /app/storage/logs/php-errors.log
error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT
opcache.enable = 1
opcache.memory_consumption = 256
opcache.interned_strings_buffer = 16
opcache.max_accelerated_files = 20000
opcache.validate_timestamps = 0
opcache.save_comments = 1
opcache.enable_file_override = 1
opcache.preload = /app/docker/preload.php
opcache.preload_user = www-data
opcache.jit_buffer_size = 64M
opcache.jit = 1255
realpath_cache_size = 4096K
realpath_cache_ttl = 600
================================================
FILE: docker/preload.php
================================================
'certificates',
];
================================================
FILE: packages/certificates/database/migrations/2025_04_08_200000_create_create_certificate_monitors_table.php
================================================
id();
$table->foreignIdFor(Site::class)->nullable()->constrained()->onDelete('cascade');
$table->foreignIdFor(Team::class)->constrained()->onDelete('cascade');
$table->boolean('enabled')->default(true);
$table->dateTime('next_check')->nullable();
$table->string('domain');
$table->integer('port')->default(443);
$table->string('serial_number')->nullable();
$table->string('protocol')->nullable();
$table->string('fingerprint')->nullable();
$table->dateTime('valid_from')->nullable();
$table->dateTime('valid_to')->nullable();
$table->json('data')->nullable();
$table->timestamps();
});
}
public function down(): void
{
Schema::dropIfExists('certificate_monitors');
}
};
================================================
FILE: packages/certificates/database/migrations/2025_04_12_090000_create_create_certificate_monitor_history_table.php
================================================
id();
$table->foreignIdFor(CertificateMonitor::class)->nullable()->constrained()->onDelete('cascade');
$table->foreignIdFor(Team::class)->constrained()->onDelete('cascade');
$table->string('serial_number')->nullable();
$table->string('protocol')->nullable();
$table->string('fingerprint')->nullable();
$table->dateTime('valid_from')->nullable();
$table->dateTime('valid_to')->nullable();
$table->json('data')->nullable();
$table->timestamps();
});
}
public function down(): void
{
Schema::dropIfExists('certificate_monitor_histories');
}
};
================================================
FILE: packages/certificates/phpstan.neon
================================================
includes:
- ./vendor/larastan/larastan/extension.neon
- ./vendor/phpstan/phpstan-mockery/extension.neon
parameters:
paths:
- src
- tests
level: 8
ignoreErrors:
- identifier: missingType.iterableValue
- identifier: missingType.generics
================================================
FILE: packages/certificates/phpunit.xml
================================================
./tests/*./src
================================================
FILE: packages/certificates/resources/navigation.php
================================================
parent('infrastructure')
->icon('phosphor-certificate')
->gate('use-certificates')
->routeIs('certificate*')
->sort(600);
================================================
FILE: packages/certificates/resources/views/components/empty-states/monitors.blade.php
================================================
================================================
FILE: packages/certificates/resources/views/index.blade.php
================================================
@lang('Add Certificate Monitor')
@lang('Add Certificate Monitor')
@if ($hasMonitors)
@else
@endif
================================================
FILE: packages/certificates/resources/views/livewire/certificate-monitor-form.blade.php
================================================
@foreach (Laravel\Jetstream\Jetstream::$permissions as $permission)
@endforeach
{{ __('Cancel') }}
{{ __('Save') }}
{{ __('Delete API Token') }}
{{ __('Are you sure you would like to delete this API token?') }}
{{ __('Cancel') }}
{{ __('Delete') }}
{{ __('Forgot your password? No problem. Just let us know your email address and we will email you a password reset link that will allow you to choose a new one.') }}
{{ __('Before continuing, could you verify your email address by clicking on the link we just emailed to you? If you didn\'t receive the email, we will gladly send you another.') }}
merge(['class' => 'cursor-not-allowed text-base-400 text-sm p-3 transition-all opacity-60'])->except(['href']) }}
x-on:click="open = false; alert('@lang('Your current plan does not allow to create this resource')')">
@endif
================================================
FILE: resources/views/dashboard.blade.php
================================================
================================================
FILE: resources/views/emails/team-invitation.blade.php
================================================
@component('mail::message')
{{ __('You have been invited to join the :team team!', ['team' => $invitation->team->name]) }}
@if (Laravel\Fortify\Features::enabled(Laravel\Fortify\Features::registration()))
{{ __('If you do not have an account, you may create one by clicking the button below. After creating an account, you may click the invitation acceptance button in this email to accept the team invitation:') }}
@component('mail::button', ['url' => route('register')])
{{ __('Create Account') }}
@endcomponent
{{ __('If you already have an account, you may accept this invitation by clicking the button below:') }}
@else
{{ __('You may accept this invitation by clicking the button below:') }}
@endif
@component('mail::button', ['url' => $acceptUrl])
{{ __('Accept Invitation') }}
@endcomponent
{{ __('If you did not expect to receive an invitation to this team, you may discard this email.') }}
@endcomponent
================================================
FILE: resources/views/errors/401.blade.php
================================================
@extends('errors.layout')
@section('title', __('Unauthorized'))
@section('code', '401')
@section('message', __($exception->getMessage() ?: 'Unauthorized'))
================================================
FILE: resources/views/errors/402.blade.php
================================================
@extends('errors.minimal')
@section('title', __('Payment Required'))
@section('code', '402')
@section('message', __('Payment Required'))
================================================
FILE: resources/views/errors/403.blade.php
================================================
@extends('errors.layout')
@section('title', __('Forbidden'))
@section('code', '403')
@section('message', __($exception->getMessage() ?: 'You do not have permission to access this resource'))
================================================
FILE: resources/views/errors/404.blade.php
================================================
@extends('errors.layout')
@section('title', __('Not Found'))
@section('code', '404')
@section('message', __('Not Found'))
================================================
FILE: resources/views/errors/419.blade.php
================================================
@extends('errors.layout')
@section('title', __('Page Expired'))
@section('code', '419')
@section('message', __('Page Expired'))
================================================
FILE: resources/views/errors/429.blade.php
================================================
@extends('errors.layout')
@section('title', __('Too Many Requests'))
@section('code', '429')
@section('message', __('Too Many Requests'))
================================================
FILE: resources/views/errors/500.blade.php
================================================
@extends('errors.minimal')
@section('title', __('Server Error'))
@section('code', '500')
@section('message', __('Something has gone wrong'))
================================================
FILE: resources/views/errors/503.blade.php
================================================
@extends('errors.minimal')
@section('title', __('Service Unavailable'))
@section('code', '503')
@section('message', __('Vigilant is currently unavailable'))
================================================
FILE: resources/views/errors/layout.blade.php
================================================
{{ __('Once your account is deleted, all of its resources and data will be permanently deleted. Before deleting your account, please download any data or information that you wish to retain.') }}
{{ __('Delete Account') }}
{{ __('Delete Account') }}
{{ __('Are you sure you want to delete your account? Once your account is deleted, all of its resources and data will be permanently deleted. Please enter your password to confirm you would like to permanently delete your account.') }}
{{ __('Cancel') }}
{{ __('Delete Account') }}
================================================
FILE: resources/views/profile/logout-other-browser-sessions-form.blade.php
================================================
{{ __('Browser Sessions') }}
{{ __('Manage and log out your active sessions on other browsers and devices.') }}
{{ __('If necessary, you may log out of all of your other browser sessions across all of your devices. Some of your recent sessions are listed below; however, this list may not be exhaustive. If you feel your account has been compromised, you should also update your password.') }}
{{ __('Log Out Other Browser Sessions') }}
{{ __('Done.') }}
{{ __('Log Out Other Browser Sessions') }}
{{ __('Please enter your password to confirm you would like to log out of your other browser sessions across all of your devices.') }}
{{ __('Cancel') }}
{{ __('Log Out Other Browser Sessions') }}
================================================
FILE: resources/views/profile/two-factor-authentication-form.blade.php
================================================
{{ __('Two Factor Authentication') }}
{{ __('Add additional security to your account using two factor authentication.') }}
@if ($this->enabled)
@if ($showingConfirmation)
{{ __('Finish enabling two factor authentication.') }}
@else
{{ __('You have enabled two factor authentication.') }}
@endif
@else
{{ __('You have not enabled two factor authentication.') }}
@endif
{{ __('When two factor authentication is enabled, you will be prompted for a secure, random token during authentication. You may retrieve this token from your phone\'s Google Authenticator application.') }}
@if ($this->enabled)
@if ($showingQrCode)
@if ($showingConfirmation)
{{ __('To finish enabling two factor authentication, scan the following QR code using your phone\'s authenticator application or enter the setup key and provide the generated OTP code.') }}
@else
{{ __('Two factor authentication is now enabled. Scan the following QR code using your phone\'s authenticator application or enter the setup key.') }}
@endif
{{ __('Store these recovery codes in a secure password manager. They can be used to recover access to your account if your two factor authentication device is lost.') }}
@foreach (json_decode(decrypt($this->user->two_factor_recovery_codes), true) as $code)
================================================
FILE: resources/views/profile/update-password-form.blade.php
================================================
{{ __('Update Password') }}
{{ __('Ensure your account is using a long, random password to stay secure.') }}
================================================
FILE: resources/views/teams/create-team-form.blade.php
================================================
{{ __('Team Details') }}
{{ __('Create a new team to separate Vigilant\'s components') }}
{{ __('Once a team is deleted, all of its resources and data will be permanently deleted. Before deleting this team, please download any data or information regarding this team that you wish to retain.') }}
{{ __('This action is non-reverable, all data will be lost.') }}
{{ __('Delete Team') }}
{{ __('Delete Team') }}
{{ __('Are you sure you want to delete this team? Once a team is deleted, all of its resources and data will be permanently deleted.') }}
{{ __('Cancel') }}
{{ __('Delete Team') }}
================================================
FILE: resources/views/teams/show.blade.php
================================================
{{ __('Pending Team Invitations') }}
{{ __('These people have been invited to your team and have been sent an invitation email. They may join the team by accepting the email invitation.') }}
@foreach ($this->roles as $index => $role)
@endforeach
{{ __('Cancel') }}
{{ __('Save') }}
{{ __('Leave Team') }}
{{ __('Are you sure you would like to leave this team?') }}
{{ __('Cancel') }}
{{ __('Leave') }}
{{ __('Remove Team Member') }}
{{ __('Are you sure you would like to remove this person from the team?') }}
{{ __('Cancel') }}
{{ __('Remove') }}
================================================
FILE: resources/views/teams/update-team-name-form.blade.php
================================================
{{ __('Team Information') }}
{{ __('Update the team name and timezone') }}
{{ $team->owner->name }}
{{ $team->owner->email }}
@foreach(DateTimeZone::listIdentifiers() as $timezone)
@endforeach
@endforeach
@lang('Select the columns you want to see. Drag them to change order.')
================================================
FILE: resources/views/vendor/livewire-table/toolbar/dropdowns/sections/configuration.blade.php
================================================
@php($columns = $this->resolveColumns())
@php($filters = $this->resolveFilters())
@if($columns->isNotEmpty())
@endif
@if($filters->isNotEmpty())
@endif
@if($this->hasSoftDeletes())
@endif
@if(count($pollingOptions) > 0)
@endif
================================================
FILE: resources/views/vendor/livewire-table/toolbar/dropdowns/sections/filters.blade.php
================================================
@php($filters = $this->resolveFilters())
@if($this->canClearFilters())
@endif
@foreach($filters as $filter)
{{ $filter->render() }}
@endforeach
@lang('Enable filters to narrow down your results.')
================================================
FILE: resources/views/vendor/livewire-table/toolbar/dropdowns/sections/polling.blade.php
================================================
@foreach($pollingOptions as $key => $value)
@endforeach
@lang('Automatically refresh the table with the given interval.')
================================================
FILE: resources/views/vendor/livewire-table/toolbar/dropdowns/sections/results.blade.php
================================================
@foreach($perPageOptions as $perPage)
@endforeach
@lang('Change the amount of visible records in the table.')
================================================
FILE: resources/views/vendor/livewire-table/toolbar/dropdowns/sections/suggestions.blade.php
================================================
================================================
FILE: resources/views/vendor/livewire-table/toolbar/dropdowns/sections/trashed.blade.php
================================================
@lang('Configure what type of records should be shown in the table.')
================================================
FILE: resources/views/vendor/livewire-table/toolbar/dropdowns/suggestions.blade.php
================================================
@include('livewire-table::toolbar.dropdowns.sections.suggestions')
================================================
FILE: resources/views/vendor/livewire-table/toolbar/loader.blade.php
================================================