├── .DS_Store ├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── app ├── AlertType.php ├── Console │ └── Commands │ │ ├── CreateAdmin.php │ │ ├── DispatchIndexingBatches.php │ │ ├── MonitorBrokenLinks.php │ │ └── MonitorServiceAccounts.php ├── Events │ └── Pages │ │ ├── BrokenLink.php │ │ ├── Indexed.php │ │ └── NewPage.php ├── Http │ └── Controllers │ │ └── Controller.php ├── Jobs │ ├── Pages │ │ ├── CheckIfPageIsNotFound.php │ │ ├── IndexPage.php │ │ ├── ListPagesBySitemap.php │ │ └── UpdateOrInsertPage.php │ ├── ServiceAccounts │ │ └── ListSitesLinkedToServiceAccount.php │ └── Sites │ │ ├── AttemptFetchFavicon.php │ │ ├── ListSitemapsBySite.php │ │ ├── ProcessSitemapIndex.php │ │ ├── RegisterSitemap.php │ │ ├── RegisterSitemapIntoGsc.php │ │ └── RemoveSitemapFromSite.php ├── Listeners │ └── Pages │ │ └── ToggleIndexedTimestamp.php ├── Livewire │ ├── Account.php │ ├── Auth │ │ ├── Login.php │ │ └── Logout.php │ ├── Pages.php │ ├── ServiceAccounts.php │ ├── Settings.php │ ├── Sitemaps.php │ ├── Sites │ │ ├── Card.php │ │ ├── Index.php │ │ └── Show.php │ └── Team.php ├── Models │ ├── Page.php │ ├── ServiceAccount.php │ ├── ServiceAccounts │ │ ├── Log.php │ │ └── Site.php │ ├── Site.php │ ├── Sitemap.php │ └── User.php ├── Providers │ ├── AppServiceProvider.php │ ├── HorizonServiceProvider.php │ └── VoltServiceProvider.php ├── Rules │ └── Domain.php ├── Services │ └── GoogleClientFactory.php ├── UserRole.php └── View │ └── Components │ ├── Alert.php │ ├── ApplicationLogo.php │ ├── Container.php │ ├── NavItem.php │ ├── PageHeader.php │ ├── PagesTable.php │ └── StatusBadge.php ├── artisan ├── bootstrap ├── app.php ├── cache │ └── .gitignore └── providers.php ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── cache.php ├── config.php ├── daily_quota ├── database.php ├── filesystems.php ├── horizon.php ├── livewire.php ├── logging.php ├── mail.php ├── queue.php ├── services.php └── session.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 0001_01_01_000000_create_users_table.php │ ├── 0001_01_01_000001_create_cache_table.php │ ├── 0001_01_01_000002_create_jobs_table.php │ ├── 2024_08_23_054718_create_sites_table.php │ ├── 2024_08_23_054821_create_pages_table.php │ ├── 2024_08_23_151038_create_sitemaps_table.php │ ├── 2024_09_11_160826_create_service_accounts_table.php │ ├── 2024_09_27_022349_iterate_sitemaps_add_busy_flag.php │ ├── 2024_09_27_192807_iterate_sitemaps_for_sitemap_indexes.php │ └── 2024_09_27_220548_iterate_pages_make_url_primary.php └── seeders │ └── DatabaseSeeder.php ├── package.json ├── phpstan.neon ├── phpunit.xml ├── postcss.config.js ├── public ├── .DS_Store ├── .htaccess ├── favicon.ico ├── index.php ├── logo.png ├── opengraph.png └── robots.txt ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js └── views │ ├── components │ ├── alert.blade.php │ ├── application-logo.blade.php │ ├── container.blade.php │ ├── layouts │ │ ├── app.blade.php │ │ ├── blank.blade.php │ │ ├── guest.blade.php │ │ └── landing.blade.php │ ├── nav-item.blade.php │ ├── outlet.blade.php │ ├── page-header.blade.php │ ├── pages-table.blade.php │ └── status-badge.blade.php │ ├── livewire │ ├── account.blade.php │ ├── auth │ │ ├── login.blade.php │ │ └── logout.blade.php │ ├── pages.blade.php │ ├── service-accounts.blade.php │ ├── settings.blade.php │ ├── sitemaps │ │ └── create.blade.php │ ├── sites │ │ ├── card.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ └── team.blade.php │ ├── partials │ └── fonts.blade.php │ ├── vendor │ ├── livewire │ │ └── tailwind.blade.php │ └── toaster │ │ └── hub.blade.php │ └── welcome.blade.php ├── routes ├── 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 ├── Pest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── vite.config.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/.DS_Store -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/README.md -------------------------------------------------------------------------------- /app/AlertType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/AlertType.php -------------------------------------------------------------------------------- /app/Console/Commands/CreateAdmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Console/Commands/CreateAdmin.php -------------------------------------------------------------------------------- /app/Console/Commands/DispatchIndexingBatches.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Console/Commands/DispatchIndexingBatches.php -------------------------------------------------------------------------------- /app/Console/Commands/MonitorBrokenLinks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Console/Commands/MonitorBrokenLinks.php -------------------------------------------------------------------------------- /app/Console/Commands/MonitorServiceAccounts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Console/Commands/MonitorServiceAccounts.php -------------------------------------------------------------------------------- /app/Events/Pages/BrokenLink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Events/Pages/BrokenLink.php -------------------------------------------------------------------------------- /app/Events/Pages/Indexed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Events/Pages/Indexed.php -------------------------------------------------------------------------------- /app/Events/Pages/NewPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Events/Pages/NewPage.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Jobs/Pages/CheckIfPageIsNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Jobs/Pages/CheckIfPageIsNotFound.php -------------------------------------------------------------------------------- /app/Jobs/Pages/IndexPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Jobs/Pages/IndexPage.php -------------------------------------------------------------------------------- /app/Jobs/Pages/ListPagesBySitemap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Jobs/Pages/ListPagesBySitemap.php -------------------------------------------------------------------------------- /app/Jobs/Pages/UpdateOrInsertPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Jobs/Pages/UpdateOrInsertPage.php -------------------------------------------------------------------------------- /app/Jobs/ServiceAccounts/ListSitesLinkedToServiceAccount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Jobs/ServiceAccounts/ListSitesLinkedToServiceAccount.php -------------------------------------------------------------------------------- /app/Jobs/Sites/AttemptFetchFavicon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Jobs/Sites/AttemptFetchFavicon.php -------------------------------------------------------------------------------- /app/Jobs/Sites/ListSitemapsBySite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Jobs/Sites/ListSitemapsBySite.php -------------------------------------------------------------------------------- /app/Jobs/Sites/ProcessSitemapIndex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Jobs/Sites/ProcessSitemapIndex.php -------------------------------------------------------------------------------- /app/Jobs/Sites/RegisterSitemap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Jobs/Sites/RegisterSitemap.php -------------------------------------------------------------------------------- /app/Jobs/Sites/RegisterSitemapIntoGsc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Jobs/Sites/RegisterSitemapIntoGsc.php -------------------------------------------------------------------------------- /app/Jobs/Sites/RemoveSitemapFromSite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Jobs/Sites/RemoveSitemapFromSite.php -------------------------------------------------------------------------------- /app/Listeners/Pages/ToggleIndexedTimestamp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Listeners/Pages/ToggleIndexedTimestamp.php -------------------------------------------------------------------------------- /app/Livewire/Account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Livewire/Account.php -------------------------------------------------------------------------------- /app/Livewire/Auth/Login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Livewire/Auth/Login.php -------------------------------------------------------------------------------- /app/Livewire/Auth/Logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Livewire/Auth/Logout.php -------------------------------------------------------------------------------- /app/Livewire/Pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Livewire/Pages.php -------------------------------------------------------------------------------- /app/Livewire/ServiceAccounts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Livewire/ServiceAccounts.php -------------------------------------------------------------------------------- /app/Livewire/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Livewire/Settings.php -------------------------------------------------------------------------------- /app/Livewire/Sitemaps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Livewire/Sitemaps.php -------------------------------------------------------------------------------- /app/Livewire/Sites/Card.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Livewire/Sites/Card.php -------------------------------------------------------------------------------- /app/Livewire/Sites/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Livewire/Sites/Index.php -------------------------------------------------------------------------------- /app/Livewire/Sites/Show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Livewire/Sites/Show.php -------------------------------------------------------------------------------- /app/Livewire/Team.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Livewire/Team.php -------------------------------------------------------------------------------- /app/Models/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Models/Page.php -------------------------------------------------------------------------------- /app/Models/ServiceAccount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Models/ServiceAccount.php -------------------------------------------------------------------------------- /app/Models/ServiceAccounts/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Models/ServiceAccounts/Log.php -------------------------------------------------------------------------------- /app/Models/ServiceAccounts/Site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Models/ServiceAccounts/Site.php -------------------------------------------------------------------------------- /app/Models/Site.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Models/Site.php -------------------------------------------------------------------------------- /app/Models/Sitemap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Models/Sitemap.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/HorizonServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Providers/HorizonServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/VoltServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Providers/VoltServiceProvider.php -------------------------------------------------------------------------------- /app/Rules/Domain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Rules/Domain.php -------------------------------------------------------------------------------- /app/Services/GoogleClientFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/Services/GoogleClientFactory.php -------------------------------------------------------------------------------- /app/UserRole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/UserRole.php -------------------------------------------------------------------------------- /app/View/Components/Alert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/View/Components/Alert.php -------------------------------------------------------------------------------- /app/View/Components/ApplicationLogo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/View/Components/ApplicationLogo.php -------------------------------------------------------------------------------- /app/View/Components/Container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/View/Components/Container.php -------------------------------------------------------------------------------- /app/View/Components/NavItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/View/Components/NavItem.php -------------------------------------------------------------------------------- /app/View/Components/PageHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/View/Components/PageHeader.php -------------------------------------------------------------------------------- /app/View/Components/PagesTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/View/Components/PagesTable.php -------------------------------------------------------------------------------- /app/View/Components/StatusBadge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/app/View/Components/StatusBadge.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /bootstrap/providers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/bootstrap/providers.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/config.php: -------------------------------------------------------------------------------- 1 | 11, 5 | ]; 6 | -------------------------------------------------------------------------------- /config/daily_quota: -------------------------------------------------------------------------------- 1 | 2000 -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/horizon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/config/horizon.php -------------------------------------------------------------------------------- /config/livewire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/config/livewire.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/config/session.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/database/migrations/0001_01_01_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000001_create_cache_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/database/migrations/0001_01_01_000001_create_cache_table.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000002_create_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/database/migrations/0001_01_01_000002_create_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2024_08_23_054718_create_sites_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/database/migrations/2024_08_23_054718_create_sites_table.php -------------------------------------------------------------------------------- /database/migrations/2024_08_23_054821_create_pages_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/database/migrations/2024_08_23_054821_create_pages_table.php -------------------------------------------------------------------------------- /database/migrations/2024_08_23_151038_create_sitemaps_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/database/migrations/2024_08_23_151038_create_sitemaps_table.php -------------------------------------------------------------------------------- /database/migrations/2024_09_11_160826_create_service_accounts_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/database/migrations/2024_09_11_160826_create_service_accounts_table.php -------------------------------------------------------------------------------- /database/migrations/2024_09_27_022349_iterate_sitemaps_add_busy_flag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/database/migrations/2024_09_27_022349_iterate_sitemaps_add_busy_flag.php -------------------------------------------------------------------------------- /database/migrations/2024_09_27_192807_iterate_sitemaps_for_sitemap_indexes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/database/migrations/2024_09_27_192807_iterate_sitemaps_for_sitemap_indexes.php -------------------------------------------------------------------------------- /database/migrations/2024_09_27_220548_iterate_pages_make_url_primary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/database/migrations/2024_09_27_220548_iterate_pages_make_url_primary.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/package.json -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/phpunit.xml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/public/.DS_Store -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/public/index.php -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/opengraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/public/opengraph.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | import '../../vendor/masmerise/livewire-toaster/resources/js'; // 👈 2 | -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/views/components/alert.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/resources/views/components/alert.blade.php -------------------------------------------------------------------------------- /resources/views/components/application-logo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/resources/views/components/application-logo.blade.php -------------------------------------------------------------------------------- /resources/views/components/container.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/resources/views/components/container.blade.php -------------------------------------------------------------------------------- /resources/views/components/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/resources/views/components/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/components/layouts/blank.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/resources/views/components/layouts/blank.blade.php -------------------------------------------------------------------------------- /resources/views/components/layouts/guest.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/resources/views/components/layouts/guest.blade.php -------------------------------------------------------------------------------- /resources/views/components/layouts/landing.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/resources/views/components/layouts/landing.blade.php -------------------------------------------------------------------------------- /resources/views/components/nav-item.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/resources/views/components/nav-item.blade.php -------------------------------------------------------------------------------- /resources/views/components/outlet.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/resources/views/components/outlet.blade.php -------------------------------------------------------------------------------- /resources/views/components/page-header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/resources/views/components/page-header.blade.php -------------------------------------------------------------------------------- /resources/views/components/pages-table.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/resources/views/components/pages-table.blade.php -------------------------------------------------------------------------------- /resources/views/components/status-badge.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/resources/views/components/status-badge.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/account.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/resources/views/livewire/account.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/resources/views/livewire/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/auth/logout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/resources/views/livewire/auth/logout.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/pages.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/resources/views/livewire/pages.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/service-accounts.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/resources/views/livewire/service-accounts.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/settings.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/resources/views/livewire/settings.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/sitemaps/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/resources/views/livewire/sitemaps/create.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/sites/card.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/resources/views/livewire/sites/card.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/sites/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/resources/views/livewire/sites/index.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/sites/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/resources/views/livewire/sites/show.blade.php -------------------------------------------------------------------------------- /resources/views/livewire/team.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/resources/views/livewire/team.blade.php -------------------------------------------------------------------------------- /resources/views/partials/fonts.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/resources/views/partials/fonts.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/livewire/tailwind.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/resources/views/vendor/livewire/tailwind.blade.php -------------------------------------------------------------------------------- /resources/views/vendor/toaster/hub.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/resources/views/vendor/toaster/hub.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maurocasas/fastindex/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- 1 |