├── .babelrc ├── .editorconfig ├── .env.example ├── .eslintrc.js ├── .git-blame-ignore-revs ├── .gitattributes ├── .github └── workflows │ ├── run-duster.yml │ └── run-tests.yml ├── .gitignore ├── .stylelintrc ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── app ├── Cache │ ├── CachedIssue.php │ ├── CachedProjectList.php │ └── CachedProjectResource.php ├── Console │ ├── Commands │ │ ├── CreateProjectSnapshots.php │ │ ├── DumpProjectsTableToJson.php │ │ ├── FetchGitHubProjects.php │ │ ├── FetchProjectStats.php │ │ ├── OutputStats.php │ │ └── SendStatsToSlack.php │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── GitHub │ ├── Dto │ │ ├── Branch.php │ │ ├── CastDates.php │ │ ├── Issue.php │ │ ├── Label.php │ │ ├── PullRequest.php │ │ ├── Repo.php │ │ └── User.php │ ├── Organization.php │ ├── ParseMarkdown.php │ └── Repository.php ├── Http │ ├── Controllers │ │ ├── Api │ │ │ └── ProjectController.php │ │ ├── Auth │ │ │ └── LoginController.php │ │ ├── Controller.php │ │ ├── IssueController.php │ │ ├── ProjectController.php │ │ └── PullRequestController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── CheckForMaintenanceMode.php │ │ ├── EncryptCookies.php │ │ ├── HandleInertiaRequests.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ ├── ValidateSignature.php │ │ └── VerifyCsrfToken.php │ └── Resources │ │ ├── Api │ │ └── ProjectResource.php │ │ └── ProjectResource.php ├── Models │ ├── FetchResult.php │ ├── Maintainer.php │ ├── Project.php │ ├── Snapshot.php │ └── User.php ├── Notifications │ └── SendOzzieStats.php ├── Nova │ ├── Actions │ │ ├── HideProject.php │ │ └── UnHideProject.php │ ├── Dashboards │ │ └── Main.php │ ├── Lenses │ │ └── ProjectsNeedingMaintainers.php │ ├── Maintainer.php │ ├── Metrics │ │ └── ProjectsMaintainers.php │ ├── Project.php │ ├── Resource.php │ └── User.php ├── Observers │ └── MaintainerObserver.php ├── OrgSlack.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── NovaServiceProvider.php │ └── RouteServiceProvider.php └── Remotes │ └── Packagist │ ├── Package.php │ └── Search.php ├── artisan ├── bin └── setup.sh ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filesystems.php ├── github.php ├── hashing.php ├── inertia.php ├── logging.php ├── mail.php ├── nova.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ ├── .gitkeep │ ├── FetchResultFactory.php │ ├── MaintainerFactory.php │ ├── ProjectFactory.php │ └── UserFactory.php ├── migrations │ ├── 2018_04_20_172748_create_snapshots_table.php │ ├── 2020_09_25_183527_create_projects_table.php │ ├── 2020_09_28_230644_add_project_id_to_snapshots_table.php │ ├── 2020_10_05_225325_add_downloads_to_snapshots_table.php │ ├── 2020_10_05_225326_add_downloads_to_projects_table.php │ ├── 2020_10_12_200513_add_packagist_name_to_projects_table.php │ ├── 2022_04_08_170614_add_is_hidden_to_projects_table.php │ ├── 2022_12_21_165231_create_users_table.php │ ├── 2022_12_21_211823_create_maintainers_relationship.php │ └── 2025_08_08_161600_create_fetch_results_table.php └── seeders │ ├── DatabaseSeeder.php │ └── ProjectsSeeder.php ├── docker-compose.yml ├── ozzie-banner.png ├── package.json ├── phpunit.xml ├── postcss.config.js ├── projects.json.dist ├── public ├── .htaccess ├── favicon.ico ├── img │ ├── ozzie.png │ └── ozzie.svg ├── index.php ├── ozzie-opengraph.png ├── robots.txt └── vendor │ └── nova │ ├── app.css │ ├── app.css.map │ ├── app.js │ ├── app.js.LICENSE.txt │ ├── app.js.map │ ├── fonts │ ├── snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty10iurt9w6fk2a.woff2 │ ├── snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty14iurt9w6fk2a.woff2 │ ├── snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty1ciurt9w6fk2a.woff2 │ ├── snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty1miurt9w6c.woff2 │ ├── snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty1wiurt9w6fk2a.woff2 │ ├── snunitosansv11pe01mimslybiv1o4x1m8cce4g35sy10iurt9w6fk2a.woff2 │ ├── snunitosansv11pe01mimslybiv1o4x1m8cce4g35sy14iurt9w6fk2a.woff2 │ ├── snunitosansv11pe01mimslybiv1o4x1m8cce4g35sy1ciurt9w6fk2a.woff2 │ ├── snunitosansv11pe01mimslybiv1o4x1m8cce4g35sy1miurt9w6c.woff2 │ ├── snunitosansv11pe01mimslybiv1o4x1m8cce4g35sy1wiurt9w6fk2a.woff2 │ ├── snunitosansv11pe01mimslybiv1o4x1m8cce4g3joy10iurt9w6fk2a.woff2 │ ├── snunitosansv11pe01mimslybiv1o4x1m8cce4g3joy14iurt9w6fk2a.woff2 │ ├── snunitosansv11pe01mimslybiv1o4x1m8cce4g3joy1ciurt9w6fk2a.woff2 │ ├── snunitosansv11pe01mimslybiv1o4x1m8cce4g3joy1miurt9w6c.woff2 │ ├── snunitosansv11pe01mimslybiv1o4x1m8cce4g3joy1wiurt9w6fk2a.woff2 │ ├── snunitosansv11pe01mimslybiv1o4x1m8cce4gwzuy10iurt9w6fk2a.woff2 │ ├── snunitosansv11pe01mimslybiv1o4x1m8cce4gwzuy14iurt9w6fk2a.woff2 │ ├── snunitosansv11pe01mimslybiv1o4x1m8cce4gwzuy1ciurt9w6fk2a.woff2 │ ├── snunitosansv11pe01mimslybiv1o4x1m8cce4gwzuy1miurt9w6c.woff2 │ ├── snunitosansv11pe01mimslybiv1o4x1m8cce4gwzuy1wiurt9w6fk2a.woff2 │ ├── snunitosansv11pe01mimslybiv1o4x1m8cce4gxzry10iurt9w6fk2a.woff2 │ ├── snunitosansv11pe01mimslybiv1o4x1m8cce4gxzry14iurt9w6fk2a.woff2 │ ├── snunitosansv11pe01mimslybiv1o4x1m8cce4gxzry1ciurt9w6fk2a.woff2 │ ├── snunitosansv11pe01mimslybiv1o4x1m8cce4gxzry1miurt9w6c.woff2 │ ├── snunitosansv11pe01mimslybiv1o4x1m8cce4gxzry1wiurt9w6fk2a.woff2 │ ├── snunitosansv11pe03mimslybiv1o4x1m8cc8-bm5gu1ecvzl-86y.woff2 │ ├── snunitosansv11pe03mimslybiv1o4x1m8cc8-bm5iu1ecvzl-86y.woff2 │ ├── snunitosansv11pe03mimslybiv1o4x1m8cc8-bm5ju1ecvzl-86y.woff2 │ ├── snunitosansv11pe03mimslybiv1o4x1m8cc8-bm5pu1ecvzl-86y.woff2 │ ├── snunitosansv11pe03mimslybiv1o4x1m8cc8-bm5tu1ecvzl.woff2 │ ├── snunitosansv11pe03mimslybiv1o4x1m8cc8abc5gu1ecvzl-86y.woff2 │ ├── snunitosansv11pe03mimslybiv1o4x1m8cc8abc5iu1ecvzl-86y.woff2 │ ├── snunitosansv11pe03mimslybiv1o4x1m8cc8abc5ju1ecvzl-86y.woff2 │ ├── snunitosansv11pe03mimslybiv1o4x1m8cc8abc5pu1ecvzl-86y.woff2 │ ├── snunitosansv11pe03mimslybiv1o4x1m8cc8abc5tu1ecvzl.woff2 │ ├── snunitosansv11pe03mimslybiv1o4x1m8cc8wac5gu1ecvzl-86y.woff2 │ ├── snunitosansv11pe03mimslybiv1o4x1m8cc8wac5iu1ecvzl-86y.woff2 │ ├── snunitosansv11pe03mimslybiv1o4x1m8cc8wac5ju1ecvzl-86y.woff2 │ ├── snunitosansv11pe03mimslybiv1o4x1m8cc8wac5pu1ecvzl-86y.woff2 │ ├── snunitosansv11pe03mimslybiv1o4x1m8cc8wac5tu1ecvzl.woff2 │ ├── snunitosansv11pe03mimslybiv1o4x1m8cc9ib85gu1ecvzl-86y.woff2 │ ├── snunitosansv11pe03mimslybiv1o4x1m8cc9ib85iu1ecvzl-86y.woff2 │ ├── snunitosansv11pe03mimslybiv1o4x1m8cc9ib85ju1ecvzl-86y.woff2 │ ├── snunitosansv11pe03mimslybiv1o4x1m8cc9ib85pu1ecvzl-86y.woff2 │ ├── snunitosansv11pe03mimslybiv1o4x1m8cc9ib85tu1ecvzl.woff2 │ ├── snunitosansv11pe03mimslybiv1o4x1m8cc9yas5gu1ecvzl-86y.woff2 │ ├── snunitosansv11pe03mimslybiv1o4x1m8cc9yas5iu1ecvzl-86y.woff2 │ ├── snunitosansv11pe03mimslybiv1o4x1m8cc9yas5ju1ecvzl-86y.woff2 │ ├── snunitosansv11pe03mimslybiv1o4x1m8cc9yas5pu1ecvzl-86y.woff2 │ ├── snunitosansv11pe03mimslybiv1o4x1m8cc9yas5tu1ecvzl.woff2 │ ├── snunitosansv11pe0omimslybiv1o4x1m8cce4e91kdn4qx5fhyg.woff2 │ ├── snunitosansv11pe0omimslybiv1o4x1m8cce4e9dkdn4qx5fhyg.woff2 │ ├── snunitosansv11pe0omimslybiv1o4x1m8cce4e9lkdn4qx5e.woff2 │ ├── snunitosansv11pe0omimslybiv1o4x1m8cce4e9rkdn4qx5fhyg.woff2 │ ├── snunitosansv11pe0omimslybiv1o4x1m8cce4e9zkdn4qx5fhyg.woff2 │ ├── snunitosansv11pe0qmimslybiv1o4x1m8cce5i9tacvwob5a.woff2 │ ├── snunitosansv11pe0qmimslybiv1o4x1m8cce9i9tacvwo.woff2 │ ├── snunitosansv11pe0qmimslybiv1o4x1m8ccewi9tacvwob5a.woff2 │ ├── snunitosansv11pe0qmimslybiv1o4x1m8cceyi9tacvwob5a.woff2 │ ├── snunitosansv11pe0qmimslybiv1o4x1m8ccezi9tacvwob5a.woff2 │ ├── snunitosansv15pe0amimslybiv1o4x1m8ce2xcx3yop4tqpf-metm0lfuvwonnq4clz0-kj3xzhggvfm.woff2 │ ├── snunitosansv15pe0amimslybiv1o4x1m8ce2xcx3yop4tqpf-metm0lfuvwonnq4clz0-kjdxzhggvfmv2w.woff2 │ ├── snunitosansv15pe0amimslybiv1o4x1m8ce2xcx3yop4tqpf-metm0lfuvwonnq4clz0-kjlxzhggvfmv2w.woff2 │ ├── snunitosansv15pe0amimslybiv1o4x1m8ce2xcx3yop4tqpf-metm0lfuvwonnq4clz0-kjnxzhggvfmv2w.woff2 │ ├── snunitosansv15pe0amimslybiv1o4x1m8ce2xcx3yop4tqpf-metm0lfuvwonnq4clz0-kjpxzhggvfmv2w.woff2 │ ├── snunitosansv15pe0omimslybiv1o4x1m8cce4odvismz5nzrqy6cmmmu3t3necaafovv9snjbw3ubdlel2qol.woff2 │ ├── snunitosansv15pe0omimslybiv1o4x1m8cce4odvismz5nzrqy6cmmmu3t3necaafovv9snjbwhubdlel2qol.woff2 │ ├── snunitosansv15pe0omimslybiv1o4x1m8cce4odvismz5nzrqy6cmmmu3t3necaafovv9snjbwxubdlel2qol.woff2 │ ├── snunitosansv15pe0omimslybiv1o4x1m8cce4odvismz5nzrqy6cmmmu3t3necaafovv9snjbynubdlel2qol.woff2 │ └── snunitosansv15pe0omimslybiv1o4x1m8cce4odvismz5nzrqy6cmmmu3t3necaafovv9snjbznubdlel2g.woff2 │ ├── main.js │ ├── main.js.map │ ├── manifest.js │ ├── manifest.js.map │ ├── mix-manifest.json │ ├── vendor.js │ ├── vendor.js.LICENSE.txt │ └── vendor.js.map ├── resources ├── css │ ├── app.css │ └── markdown.css ├── lang │ └── vendor │ │ └── nova │ │ ├── en.json │ │ └── en │ │ └── validation.php ├── ts │ ├── Pages │ │ ├── Issue │ │ │ └── Show.vue │ │ ├── Projects │ │ │ ├── Index.vue │ │ │ └── Show.vue │ │ └── PullRequest │ │ │ └── Show.vue │ ├── app.ts │ ├── components │ │ ├── BreadCrumb.vue │ │ ├── Card.vue │ │ ├── CardHeader.vue │ │ ├── CardRow.vue │ │ ├── DebtTable.vue │ │ ├── GitHubItem.vue │ │ ├── GitHubLabel.vue │ │ ├── GitHubListItem.vue │ │ ├── IconCommit.vue │ │ ├── IconConversation.vue │ │ ├── IconFileDiff.vue │ │ ├── IconGitHub.vue │ │ ├── Layout.vue │ │ ├── ProjectHeader.vue │ │ └── UserMenu.vue │ ├── functions │ │ └── url.ts │ └── ozzie.ts └── views │ ├── app.blade.php │ ├── components │ └── project.blade.php │ └── errors │ ├── 403.blade.php │ ├── layout.blade.php │ └── minimal.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tailwind.config.js ├── tests ├── CreatesApplication.php ├── Feature │ ├── .gitignore │ ├── CreateProjectSnapshotsTest.php │ ├── ExampleTest.php │ ├── FetchErrorHandlingTest.php │ ├── FetchGitHubProjectsTest.php │ ├── FetchProjectStatsTest.php │ ├── GetProjectsTest.php │ ├── OutputStatsTest.php │ ├── PublicRoutesTest.php │ ├── SendStatsToSlackTest.php │ └── ShowProjectTest.php ├── Pest.php ├── TestCase.php └── Unit │ ├── .gitignore │ ├── DumpProjectsTableToJsonTest.php │ └── ExampleTest.php ├── tlint.json ├── tsconfig.json └── vite.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | # Dusting 2 | 9fdea146aa6d4946927f01ae8567bb80009f8430 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/run-duster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/.github/workflows/run-duster.yml -------------------------------------------------------------------------------- /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/.gitignore -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/.stylelintrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/README.md -------------------------------------------------------------------------------- /app/Cache/CachedIssue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Cache/CachedIssue.php -------------------------------------------------------------------------------- /app/Cache/CachedProjectList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Cache/CachedProjectList.php -------------------------------------------------------------------------------- /app/Cache/CachedProjectResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Cache/CachedProjectResource.php -------------------------------------------------------------------------------- /app/Console/Commands/CreateProjectSnapshots.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Console/Commands/CreateProjectSnapshots.php -------------------------------------------------------------------------------- /app/Console/Commands/DumpProjectsTableToJson.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Console/Commands/DumpProjectsTableToJson.php -------------------------------------------------------------------------------- /app/Console/Commands/FetchGitHubProjects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Console/Commands/FetchGitHubProjects.php -------------------------------------------------------------------------------- /app/Console/Commands/FetchProjectStats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Console/Commands/FetchProjectStats.php -------------------------------------------------------------------------------- /app/Console/Commands/OutputStats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Console/Commands/OutputStats.php -------------------------------------------------------------------------------- /app/Console/Commands/SendStatsToSlack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Console/Commands/SendStatsToSlack.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/GitHub/Dto/Branch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/GitHub/Dto/Branch.php -------------------------------------------------------------------------------- /app/GitHub/Dto/CastDates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/GitHub/Dto/CastDates.php -------------------------------------------------------------------------------- /app/GitHub/Dto/Issue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/GitHub/Dto/Issue.php -------------------------------------------------------------------------------- /app/GitHub/Dto/Label.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/GitHub/Dto/Label.php -------------------------------------------------------------------------------- /app/GitHub/Dto/PullRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/GitHub/Dto/PullRequest.php -------------------------------------------------------------------------------- /app/GitHub/Dto/Repo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/GitHub/Dto/Repo.php -------------------------------------------------------------------------------- /app/GitHub/Dto/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/GitHub/Dto/User.php -------------------------------------------------------------------------------- /app/GitHub/Organization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/GitHub/Organization.php -------------------------------------------------------------------------------- /app/GitHub/ParseMarkdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/GitHub/ParseMarkdown.php -------------------------------------------------------------------------------- /app/GitHub/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/GitHub/Repository.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/ProjectController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Http/Controllers/Api/ProjectController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/IssueController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Http/Controllers/IssueController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ProjectController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Http/Controllers/ProjectController.php -------------------------------------------------------------------------------- /app/Http/Controllers/PullRequestController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Http/Controllers/PullRequestController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/CheckForMaintenanceMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Http/Middleware/CheckForMaintenanceMode.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/HandleInertiaRequests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Http/Middleware/HandleInertiaRequests.php -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/ValidateSignature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Http/Middleware/ValidateSignature.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Resources/Api/ProjectResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Http/Resources/Api/ProjectResource.php -------------------------------------------------------------------------------- /app/Http/Resources/ProjectResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Http/Resources/ProjectResource.php -------------------------------------------------------------------------------- /app/Models/FetchResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Models/FetchResult.php -------------------------------------------------------------------------------- /app/Models/Maintainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Models/Maintainer.php -------------------------------------------------------------------------------- /app/Models/Project.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Models/Project.php -------------------------------------------------------------------------------- /app/Models/Snapshot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Models/Snapshot.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Notifications/SendOzzieStats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Notifications/SendOzzieStats.php -------------------------------------------------------------------------------- /app/Nova/Actions/HideProject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Nova/Actions/HideProject.php -------------------------------------------------------------------------------- /app/Nova/Actions/UnHideProject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Nova/Actions/UnHideProject.php -------------------------------------------------------------------------------- /app/Nova/Dashboards/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Nova/Dashboards/Main.php -------------------------------------------------------------------------------- /app/Nova/Lenses/ProjectsNeedingMaintainers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Nova/Lenses/ProjectsNeedingMaintainers.php -------------------------------------------------------------------------------- /app/Nova/Maintainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Nova/Maintainer.php -------------------------------------------------------------------------------- /app/Nova/Metrics/ProjectsMaintainers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Nova/Metrics/ProjectsMaintainers.php -------------------------------------------------------------------------------- /app/Nova/Project.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Nova/Project.php -------------------------------------------------------------------------------- /app/Nova/Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Nova/Resource.php -------------------------------------------------------------------------------- /app/Nova/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Nova/User.php -------------------------------------------------------------------------------- /app/Observers/MaintainerObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Observers/MaintainerObserver.php -------------------------------------------------------------------------------- /app/OrgSlack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/OrgSlack.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/NovaServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Providers/NovaServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Remotes/Packagist/Package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Remotes/Packagist/Package.php -------------------------------------------------------------------------------- /app/Remotes/Packagist/Search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/app/Remotes/Packagist/Search.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/artisan -------------------------------------------------------------------------------- /bin/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/bin/setup.sh -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/github.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/config/github.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/inertia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/config/inertia.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/nova.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/config/nova.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/database/.gitignore -------------------------------------------------------------------------------- /database/factories/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/factories/FetchResultFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/database/factories/FetchResultFactory.php -------------------------------------------------------------------------------- /database/factories/MaintainerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/database/factories/MaintainerFactory.php -------------------------------------------------------------------------------- /database/factories/ProjectFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/database/factories/ProjectFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2018_04_20_172748_create_snapshots_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/database/migrations/2018_04_20_172748_create_snapshots_table.php -------------------------------------------------------------------------------- /database/migrations/2020_09_25_183527_create_projects_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/database/migrations/2020_09_25_183527_create_projects_table.php -------------------------------------------------------------------------------- /database/migrations/2020_09_28_230644_add_project_id_to_snapshots_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/database/migrations/2020_09_28_230644_add_project_id_to_snapshots_table.php -------------------------------------------------------------------------------- /database/migrations/2020_10_05_225325_add_downloads_to_snapshots_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/database/migrations/2020_10_05_225325_add_downloads_to_snapshots_table.php -------------------------------------------------------------------------------- /database/migrations/2020_10_05_225326_add_downloads_to_projects_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/database/migrations/2020_10_05_225326_add_downloads_to_projects_table.php -------------------------------------------------------------------------------- /database/migrations/2020_10_12_200513_add_packagist_name_to_projects_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/database/migrations/2020_10_12_200513_add_packagist_name_to_projects_table.php -------------------------------------------------------------------------------- /database/migrations/2022_04_08_170614_add_is_hidden_to_projects_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/database/migrations/2022_04_08_170614_add_is_hidden_to_projects_table.php -------------------------------------------------------------------------------- /database/migrations/2022_12_21_165231_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/database/migrations/2022_12_21_165231_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2022_12_21_211823_create_maintainers_relationship.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/database/migrations/2022_12_21_211823_create_maintainers_relationship.php -------------------------------------------------------------------------------- /database/migrations/2025_08_08_161600_create_fetch_results_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/database/migrations/2025_08_08_161600_create_fetch_results_table.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/ProjectsSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/database/seeders/ProjectsSeeder.php -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /ozzie-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/ozzie-banner.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/phpunit.xml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/postcss.config.js -------------------------------------------------------------------------------- /projects.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/projects.json.dist -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/img/ozzie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/img/ozzie.png -------------------------------------------------------------------------------- /public/img/ozzie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/img/ozzie.svg -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/index.php -------------------------------------------------------------------------------- /public/ozzie-opengraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/ozzie-opengraph.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/vendor/nova/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/app.css -------------------------------------------------------------------------------- /public/vendor/nova/app.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/app.css.map -------------------------------------------------------------------------------- /public/vendor/nova/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/app.js -------------------------------------------------------------------------------- /public/vendor/nova/app.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/app.js.LICENSE.txt -------------------------------------------------------------------------------- /public/vendor/nova/app.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/app.js.map -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty10iurt9w6fk2a.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty10iurt9w6fk2a.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty14iurt9w6fk2a.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty14iurt9w6fk2a.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty1ciurt9w6fk2a.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty1ciurt9w6fk2a.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty1miurt9w6c.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty1miurt9w6c.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty1wiurt9w6fk2a.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g1pty1wiurt9w6fk2a.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g35sy10iurt9w6fk2a.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g35sy10iurt9w6fk2a.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g35sy14iurt9w6fk2a.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g35sy14iurt9w6fk2a.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g35sy1ciurt9w6fk2a.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g35sy1ciurt9w6fk2a.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g35sy1miurt9w6c.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g35sy1miurt9w6c.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g35sy1wiurt9w6fk2a.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g35sy1wiurt9w6fk2a.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g3joy10iurt9w6fk2a.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g3joy10iurt9w6fk2a.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g3joy14iurt9w6fk2a.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g3joy14iurt9w6fk2a.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g3joy1ciurt9w6fk2a.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g3joy1ciurt9w6fk2a.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g3joy1miurt9w6c.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g3joy1miurt9w6c.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g3joy1wiurt9w6fk2a.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4g3joy1wiurt9w6fk2a.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gwzuy10iurt9w6fk2a.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gwzuy10iurt9w6fk2a.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gwzuy14iurt9w6fk2a.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gwzuy14iurt9w6fk2a.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gwzuy1ciurt9w6fk2a.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gwzuy1ciurt9w6fk2a.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gwzuy1miurt9w6c.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gwzuy1miurt9w6c.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gwzuy1wiurt9w6fk2a.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gwzuy1wiurt9w6fk2a.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gxzry10iurt9w6fk2a.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gxzry10iurt9w6fk2a.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gxzry14iurt9w6fk2a.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gxzry14iurt9w6fk2a.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gxzry1ciurt9w6fk2a.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gxzry1ciurt9w6fk2a.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gxzry1miurt9w6c.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gxzry1miurt9w6c.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gxzry1wiurt9w6fk2a.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe01mimslybiv1o4x1m8cce4gxzry1wiurt9w6fk2a.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8-bm5gu1ecvzl-86y.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8-bm5gu1ecvzl-86y.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8-bm5iu1ecvzl-86y.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8-bm5iu1ecvzl-86y.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8-bm5ju1ecvzl-86y.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8-bm5ju1ecvzl-86y.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8-bm5pu1ecvzl-86y.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8-bm5pu1ecvzl-86y.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8-bm5tu1ecvzl.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8-bm5tu1ecvzl.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8abc5gu1ecvzl-86y.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8abc5gu1ecvzl-86y.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8abc5iu1ecvzl-86y.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8abc5iu1ecvzl-86y.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8abc5ju1ecvzl-86y.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8abc5ju1ecvzl-86y.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8abc5pu1ecvzl-86y.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8abc5pu1ecvzl-86y.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8abc5tu1ecvzl.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8abc5tu1ecvzl.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8wac5gu1ecvzl-86y.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8wac5gu1ecvzl-86y.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8wac5iu1ecvzl-86y.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8wac5iu1ecvzl-86y.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8wac5ju1ecvzl-86y.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8wac5ju1ecvzl-86y.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8wac5pu1ecvzl-86y.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8wac5pu1ecvzl-86y.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8wac5tu1ecvzl.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc8wac5tu1ecvzl.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9ib85gu1ecvzl-86y.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9ib85gu1ecvzl-86y.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9ib85iu1ecvzl-86y.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9ib85iu1ecvzl-86y.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9ib85ju1ecvzl-86y.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9ib85ju1ecvzl-86y.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9ib85pu1ecvzl-86y.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9ib85pu1ecvzl-86y.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9ib85tu1ecvzl.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9ib85tu1ecvzl.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9yas5gu1ecvzl-86y.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9yas5gu1ecvzl-86y.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9yas5iu1ecvzl-86y.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9yas5iu1ecvzl-86y.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9yas5ju1ecvzl-86y.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9yas5ju1ecvzl-86y.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9yas5pu1ecvzl-86y.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9yas5pu1ecvzl-86y.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9yas5tu1ecvzl.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe03mimslybiv1o4x1m8cc9yas5tu1ecvzl.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe0omimslybiv1o4x1m8cce4e91kdn4qx5fhyg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe0omimslybiv1o4x1m8cce4e91kdn4qx5fhyg.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe0omimslybiv1o4x1m8cce4e9dkdn4qx5fhyg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe0omimslybiv1o4x1m8cce4e9dkdn4qx5fhyg.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe0omimslybiv1o4x1m8cce4e9lkdn4qx5e.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe0omimslybiv1o4x1m8cce4e9lkdn4qx5e.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe0omimslybiv1o4x1m8cce4e9rkdn4qx5fhyg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe0omimslybiv1o4x1m8cce4e9rkdn4qx5fhyg.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe0omimslybiv1o4x1m8cce4e9zkdn4qx5fhyg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe0omimslybiv1o4x1m8cce4e9zkdn4qx5fhyg.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe0qmimslybiv1o4x1m8cce5i9tacvwob5a.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe0qmimslybiv1o4x1m8cce5i9tacvwob5a.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe0qmimslybiv1o4x1m8cce9i9tacvwo.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe0qmimslybiv1o4x1m8cce9i9tacvwo.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe0qmimslybiv1o4x1m8ccewi9tacvwob5a.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe0qmimslybiv1o4x1m8ccewi9tacvwob5a.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe0qmimslybiv1o4x1m8cceyi9tacvwob5a.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe0qmimslybiv1o4x1m8cceyi9tacvwob5a.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv11pe0qmimslybiv1o4x1m8ccezi9tacvwob5a.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv11pe0qmimslybiv1o4x1m8ccezi9tacvwob5a.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv15pe0amimslybiv1o4x1m8ce2xcx3yop4tqpf-metm0lfuvwonnq4clz0-kj3xzhggvfm.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv15pe0amimslybiv1o4x1m8ce2xcx3yop4tqpf-metm0lfuvwonnq4clz0-kj3xzhggvfm.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv15pe0amimslybiv1o4x1m8ce2xcx3yop4tqpf-metm0lfuvwonnq4clz0-kjdxzhggvfmv2w.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv15pe0amimslybiv1o4x1m8ce2xcx3yop4tqpf-metm0lfuvwonnq4clz0-kjdxzhggvfmv2w.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv15pe0amimslybiv1o4x1m8ce2xcx3yop4tqpf-metm0lfuvwonnq4clz0-kjlxzhggvfmv2w.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv15pe0amimslybiv1o4x1m8ce2xcx3yop4tqpf-metm0lfuvwonnq4clz0-kjlxzhggvfmv2w.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv15pe0amimslybiv1o4x1m8ce2xcx3yop4tqpf-metm0lfuvwonnq4clz0-kjnxzhggvfmv2w.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv15pe0amimslybiv1o4x1m8ce2xcx3yop4tqpf-metm0lfuvwonnq4clz0-kjnxzhggvfmv2w.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv15pe0amimslybiv1o4x1m8ce2xcx3yop4tqpf-metm0lfuvwonnq4clz0-kjpxzhggvfmv2w.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv15pe0amimslybiv1o4x1m8ce2xcx3yop4tqpf-metm0lfuvwonnq4clz0-kjpxzhggvfmv2w.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv15pe0omimslybiv1o4x1m8cce4odvismz5nzrqy6cmmmu3t3necaafovv9snjbw3ubdlel2qol.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv15pe0omimslybiv1o4x1m8cce4odvismz5nzrqy6cmmmu3t3necaafovv9snjbw3ubdlel2qol.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv15pe0omimslybiv1o4x1m8cce4odvismz5nzrqy6cmmmu3t3necaafovv9snjbwhubdlel2qol.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv15pe0omimslybiv1o4x1m8cce4odvismz5nzrqy6cmmmu3t3necaafovv9snjbwhubdlel2qol.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv15pe0omimslybiv1o4x1m8cce4odvismz5nzrqy6cmmmu3t3necaafovv9snjbwxubdlel2qol.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv15pe0omimslybiv1o4x1m8cce4odvismz5nzrqy6cmmmu3t3necaafovv9snjbwxubdlel2qol.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv15pe0omimslybiv1o4x1m8cce4odvismz5nzrqy6cmmmu3t3necaafovv9snjbynubdlel2qol.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv15pe0omimslybiv1o4x1m8cce4odvismz5nzrqy6cmmmu3t3necaafovv9snjbynubdlel2qol.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/fonts/snunitosansv15pe0omimslybiv1o4x1m8cce4odvismz5nzrqy6cmmmu3t3necaafovv9snjbznubdlel2g.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/fonts/snunitosansv15pe0omimslybiv1o4x1m8cce4odvismz5nzrqy6cmmmu3t3necaafovv9snjbznubdlel2g.woff2 -------------------------------------------------------------------------------- /public/vendor/nova/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/main.js -------------------------------------------------------------------------------- /public/vendor/nova/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/main.js.map -------------------------------------------------------------------------------- /public/vendor/nova/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/manifest.js -------------------------------------------------------------------------------- /public/vendor/nova/manifest.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/manifest.js.map -------------------------------------------------------------------------------- /public/vendor/nova/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/mix-manifest.json -------------------------------------------------------------------------------- /public/vendor/nova/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/vendor.js -------------------------------------------------------------------------------- /public/vendor/nova/vendor.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/vendor.js.LICENSE.txt -------------------------------------------------------------------------------- /public/vendor/nova/vendor.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/public/vendor/nova/vendor.js.map -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/css/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/resources/css/markdown.css -------------------------------------------------------------------------------- /resources/lang/vendor/nova/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/resources/lang/vendor/nova/en.json -------------------------------------------------------------------------------- /resources/lang/vendor/nova/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/resources/lang/vendor/nova/en/validation.php -------------------------------------------------------------------------------- /resources/ts/Pages/Issue/Show.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/resources/ts/Pages/Issue/Show.vue -------------------------------------------------------------------------------- /resources/ts/Pages/Projects/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/resources/ts/Pages/Projects/Index.vue -------------------------------------------------------------------------------- /resources/ts/Pages/Projects/Show.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/resources/ts/Pages/Projects/Show.vue -------------------------------------------------------------------------------- /resources/ts/Pages/PullRequest/Show.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/resources/ts/Pages/PullRequest/Show.vue -------------------------------------------------------------------------------- /resources/ts/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/resources/ts/app.ts -------------------------------------------------------------------------------- /resources/ts/components/BreadCrumb.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/resources/ts/components/BreadCrumb.vue -------------------------------------------------------------------------------- /resources/ts/components/Card.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/resources/ts/components/Card.vue -------------------------------------------------------------------------------- /resources/ts/components/CardHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/resources/ts/components/CardHeader.vue -------------------------------------------------------------------------------- /resources/ts/components/CardRow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/resources/ts/components/CardRow.vue -------------------------------------------------------------------------------- /resources/ts/components/DebtTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/resources/ts/components/DebtTable.vue -------------------------------------------------------------------------------- /resources/ts/components/GitHubItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/resources/ts/components/GitHubItem.vue -------------------------------------------------------------------------------- /resources/ts/components/GitHubLabel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/resources/ts/components/GitHubLabel.vue -------------------------------------------------------------------------------- /resources/ts/components/GitHubListItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/resources/ts/components/GitHubListItem.vue -------------------------------------------------------------------------------- /resources/ts/components/IconCommit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/resources/ts/components/IconCommit.vue -------------------------------------------------------------------------------- /resources/ts/components/IconConversation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/resources/ts/components/IconConversation.vue -------------------------------------------------------------------------------- /resources/ts/components/IconFileDiff.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/resources/ts/components/IconFileDiff.vue -------------------------------------------------------------------------------- /resources/ts/components/IconGitHub.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/resources/ts/components/IconGitHub.vue -------------------------------------------------------------------------------- /resources/ts/components/Layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/resources/ts/components/Layout.vue -------------------------------------------------------------------------------- /resources/ts/components/ProjectHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/resources/ts/components/ProjectHeader.vue -------------------------------------------------------------------------------- /resources/ts/components/UserMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/resources/ts/components/UserMenu.vue -------------------------------------------------------------------------------- /resources/ts/functions/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/resources/ts/functions/url.ts -------------------------------------------------------------------------------- /resources/ts/ozzie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/resources/ts/ozzie.ts -------------------------------------------------------------------------------- /resources/views/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/resources/views/app.blade.php -------------------------------------------------------------------------------- /resources/views/components/project.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/resources/views/components/project.blade.php -------------------------------------------------------------------------------- /resources/views/errors/403.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/resources/views/errors/403.blade.php -------------------------------------------------------------------------------- /resources/views/errors/layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/resources/views/errors/layout.blade.php -------------------------------------------------------------------------------- /resources/views/errors/minimal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/resources/views/errors/minimal.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/routes/web.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Feature/CreateProjectSnapshotsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/tests/Feature/CreateProjectSnapshotsTest.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/Feature/FetchErrorHandlingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/tests/Feature/FetchErrorHandlingTest.php -------------------------------------------------------------------------------- /tests/Feature/FetchGitHubProjectsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/tests/Feature/FetchGitHubProjectsTest.php -------------------------------------------------------------------------------- /tests/Feature/FetchProjectStatsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/tests/Feature/FetchProjectStatsTest.php -------------------------------------------------------------------------------- /tests/Feature/GetProjectsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/tests/Feature/GetProjectsTest.php -------------------------------------------------------------------------------- /tests/Feature/OutputStatsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/tests/Feature/OutputStatsTest.php -------------------------------------------------------------------------------- /tests/Feature/PublicRoutesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/tests/Feature/PublicRoutesTest.php -------------------------------------------------------------------------------- /tests/Feature/SendStatsToSlackTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/tests/Feature/SendStatsToSlackTest.php -------------------------------------------------------------------------------- /tests/Feature/ShowProjectTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/tests/Feature/ShowProjectTest.php -------------------------------------------------------------------------------- /tests/Pest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/tests/Pest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Unit/DumpProjectsTableToJsonTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/tests/Unit/DumpProjectsTableToJsonTest.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /tlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/tlint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tighten/ozzie/HEAD/vite.config.js --------------------------------------------------------------------------------