├── .DS_Store ├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .nvmrc ├── .prettierrc ├── README.md ├── app ├── .DS_Store ├── Casts │ └── HumanReadableTime.php ├── Concerns │ └── BackupDatabase.php ├── Events │ └── BackupCompleted.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── AuthenticatedSessionController.php │ │ │ ├── ConfirmablePasswordController.php │ │ │ ├── EmailVerificationNotificationController.php │ │ │ ├── EmailVerificationPromptController.php │ │ │ ├── NewPasswordController.php │ │ │ ├── PasswordController.php │ │ │ ├── PasswordResetLinkController.php │ │ │ ├── RegisteredUserController.php │ │ │ └── VerifyEmailController.php │ │ ├── BackupController.php │ │ ├── Controller.php │ │ └── ProfileController.php │ ├── Middleware │ │ └── HandleInertiaRequests.php │ └── Requests │ │ ├── Auth │ │ └── LoginRequest.php │ │ └── ProfileUpdateRequest.php ├── Jobs │ └── ProcessDbBackup.php ├── Models │ ├── DatabaseBackup.php │ └── User.php └── Providers │ └── AppServiceProvider.php ├── artisan ├── bootstrap ├── app.php ├── cache │ └── .gitignore └── providers.php ├── components.json ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── database.php ├── devdojo │ └── auth │ │ ├── appearance.php │ │ ├── descriptions.php │ │ ├── language.php │ │ ├── providers.php │ │ └── settings.php ├── filesystems.php ├── logging.php ├── mail.php ├── queue.php ├── reverb.php ├── services.php └── session.php ├── database ├── .DS_Store ├── .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_04_24_000001_add_user_social_provider_table.php │ ├── 2024_04_24_000002_update_passwords_field_to_be_nullable.php │ ├── 2024_05_07_000003_add_two_factor_auth_columns.php │ └── 2024_08_18_080518_create_database_backups_table.php └── seeders │ ├── DatabaseSeeder.php │ └── UserSeeder.php ├── package.json ├── phpunit.xml ├── postcss.config.js ├── public ├── .DS_Store ├── .htaccess ├── auth │ ├── app.css │ ├── build │ │ ├── assets │ │ │ ├── scripts.js │ │ │ └── styles.css │ │ └── manifest.json │ └── img │ │ ├── favicon-dark.png │ │ ├── favicon.ico │ │ └── favicon.png ├── favicon.ico ├── images │ ├── avatar.jpg │ ├── jsonfakery-avatar.svg │ └── sample-logo.svg ├── index.php └── robots.txt ├── resources ├── .DS_Store ├── css │ ├── app.css │ └── custom-font.css ├── fonts │ ├── geist_mono │ │ ├── GeistMonoVF.woff │ │ └── GeistMonoVF.woff2 │ ├── geist_sans │ │ ├── GeistVF.woff │ │ └── GeistVF.woff2 │ └── jetbrains_mono │ │ ├── .DS_Store │ │ ├── generator_config.txt │ │ ├── jetbrainsmono-regular-demo.html │ │ ├── jetbrainsmono-regular-webfont.woff │ │ ├── jetbrainsmono-regular-webfont.woff2 │ │ ├── specimen_files │ │ ├── grid_12-825-55-15.css │ │ └── specimen_stylesheet.css │ │ └── stylesheet.css ├── js │ ├── Components │ │ ├── AppHeader.tsx │ │ ├── ApplicationLogo.tsx │ │ ├── Checkbox.tsx │ │ ├── CustomToaster.tsx │ │ ├── CustomTooltip.tsx │ │ ├── DangerButton.tsx │ │ ├── Dropdown.tsx │ │ ├── Footer.tsx │ │ ├── InputError.tsx │ │ ├── InputLabel.tsx │ │ ├── Modal.tsx │ │ ├── NavLink.tsx │ │ ├── Navigation.tsx │ │ ├── PrimaryButton.tsx │ │ ├── ResponsiveNavLink.tsx │ │ ├── SearchButton.tsx │ │ ├── SearchMenu.tsx │ │ ├── SecondaryButton.tsx │ │ ├── TaskEmails.tsx │ │ ├── TextInput.tsx │ │ ├── UserDropdownMenu.tsx │ │ ├── statistics │ │ │ ├── Applicants.tsx │ │ │ ├── MonthlyRevenue.tsx │ │ │ ├── SalesChart.tsx │ │ │ ├── Subscriptions.tsx │ │ │ └── UserEngagement.tsx │ │ ├── ui │ │ │ ├── avatar.tsx │ │ │ ├── badge.tsx │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ ├── chart.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── table.tsx │ │ │ ├── toast.tsx │ │ │ ├── toaster.tsx │ │ │ ├── tooltip.tsx │ │ │ └── use-toast.ts │ │ └── v1.upload-progress.tsx │ ├── Layouts │ │ ├── AuthenticatedLayout.tsx │ │ └── GuestLayout.tsx │ ├── Pages │ │ ├── Auth │ │ │ ├── ConfirmPassword.tsx │ │ │ ├── ForgotPassword.tsx │ │ │ ├── Login.tsx │ │ │ ├── Register.tsx │ │ │ ├── ResetPassword.tsx │ │ │ └── VerifyEmail.tsx │ │ ├── BackupDatabase.tsx │ │ ├── Dashboard.tsx │ │ ├── Profile │ │ │ ├── Edit.tsx │ │ │ └── Partials │ │ │ │ ├── DeleteUserForm.tsx │ │ │ │ ├── UpdatePasswordForm.tsx │ │ │ │ └── UpdateProfileInformationForm.tsx │ │ └── Welcome.tsx │ ├── app.tsx │ ├── bootstrap.ts │ ├── echo.js │ ├── lib │ │ └── utils.ts │ ├── menus.tsx │ └── types │ │ ├── global.d.ts │ │ ├── index.d.ts │ │ └── vite-env.d.ts └── views │ └── app.blade.php ├── routes ├── auth.php ├── channels.php ├── console.php └── web.php ├── storage ├── .DS_Store ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .DS_Store │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tailwind.config.js ├── tests ├── .DS_Store ├── Feature │ ├── Auth │ │ ├── AuthenticationTest.php │ │ ├── EmailVerificationTest.php │ │ ├── PasswordConfirmationTest.php │ │ ├── PasswordResetTest.php │ │ ├── PasswordUpdateTest.php │ │ └── RegistrationTest.php │ ├── ExampleTest.php │ └── ProfileTest.php ├── Pest.php ├── TestCase.php └── Unit │ └── ExampleTest.php ├── tsconfig.json └── vite.config.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/.DS_Store -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20 -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/README.md -------------------------------------------------------------------------------- /app/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/app/.DS_Store -------------------------------------------------------------------------------- /app/Casts/HumanReadableTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/app/Casts/HumanReadableTime.php -------------------------------------------------------------------------------- /app/Concerns/BackupDatabase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/app/Concerns/BackupDatabase.php -------------------------------------------------------------------------------- /app/Events/BackupCompleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/app/Events/BackupCompleted.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/AuthenticatedSessionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/app/Http/Controllers/Auth/AuthenticatedSessionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ConfirmablePasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/app/Http/Controllers/Auth/ConfirmablePasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/EmailVerificationNotificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/app/Http/Controllers/Auth/EmailVerificationNotificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/EmailVerificationPromptController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/app/Http/Controllers/Auth/EmailVerificationPromptController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/NewPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/app/Http/Controllers/Auth/NewPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/PasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/app/Http/Controllers/Auth/PasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/PasswordResetLinkController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/app/Http/Controllers/Auth/PasswordResetLinkController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisteredUserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/app/Http/Controllers/Auth/RegisteredUserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerifyEmailController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/app/Http/Controllers/Auth/VerifyEmailController.php -------------------------------------------------------------------------------- /app/Http/Controllers/BackupController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/app/Http/Controllers/BackupController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/ProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/app/Http/Controllers/ProfileController.php -------------------------------------------------------------------------------- /app/Http/Middleware/HandleInertiaRequests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/app/Http/Middleware/HandleInertiaRequests.php -------------------------------------------------------------------------------- /app/Http/Requests/Auth/LoginRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/app/Http/Requests/Auth/LoginRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/ProfileUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/app/Http/Requests/ProfileUpdateRequest.php -------------------------------------------------------------------------------- /app/Jobs/ProcessDbBackup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/app/Jobs/ProcessDbBackup.php -------------------------------------------------------------------------------- /app/Models/DatabaseBackup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/app/Models/DatabaseBackup.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /bootstrap/providers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/bootstrap/providers.php -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/components.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/config/database.php -------------------------------------------------------------------------------- /config/devdojo/auth/appearance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/config/devdojo/auth/appearance.php -------------------------------------------------------------------------------- /config/devdojo/auth/descriptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/config/devdojo/auth/descriptions.php -------------------------------------------------------------------------------- /config/devdojo/auth/language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/config/devdojo/auth/language.php -------------------------------------------------------------------------------- /config/devdojo/auth/providers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/config/devdojo/auth/providers.php -------------------------------------------------------------------------------- /config/devdojo/auth/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/config/devdojo/auth/settings.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/reverb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/config/reverb.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/config/session.php -------------------------------------------------------------------------------- /database/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/database/.DS_Store -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/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/glennraya/backupdb/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/glennraya/backupdb/HEAD/database/migrations/0001_01_01_000002_create_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2024_04_24_000001_add_user_social_provider_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/database/migrations/2024_04_24_000001_add_user_social_provider_table.php -------------------------------------------------------------------------------- /database/migrations/2024_04_24_000002_update_passwords_field_to_be_nullable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/database/migrations/2024_04_24_000002_update_passwords_field_to_be_nullable.php -------------------------------------------------------------------------------- /database/migrations/2024_05_07_000003_add_two_factor_auth_columns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/database/migrations/2024_05_07_000003_add_two_factor_auth_columns.php -------------------------------------------------------------------------------- /database/migrations/2024_08_18_080518_create_database_backups_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/database/migrations/2024_08_18_080518_create_database_backups_table.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/UserSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/database/seeders/UserSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/phpunit.xml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/public/.DS_Store -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/auth/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/public/auth/app.css -------------------------------------------------------------------------------- /public/auth/build/assets/scripts.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /public/auth/build/assets/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/public/auth/build/assets/styles.css -------------------------------------------------------------------------------- /public/auth/build/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/public/auth/build/manifest.json -------------------------------------------------------------------------------- /public/auth/img/favicon-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/public/auth/img/favicon-dark.png -------------------------------------------------------------------------------- /public/auth/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/public/auth/img/favicon.ico -------------------------------------------------------------------------------- /public/auth/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/public/auth/img/favicon.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/public/images/avatar.jpg -------------------------------------------------------------------------------- /public/images/jsonfakery-avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/public/images/jsonfakery-avatar.svg -------------------------------------------------------------------------------- /public/images/sample-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/public/images/sample-logo.svg -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/.DS_Store -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/css/custom-font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/css/custom-font.css -------------------------------------------------------------------------------- /resources/fonts/geist_mono/GeistMonoVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/fonts/geist_mono/GeistMonoVF.woff -------------------------------------------------------------------------------- /resources/fonts/geist_mono/GeistMonoVF.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/fonts/geist_mono/GeistMonoVF.woff2 -------------------------------------------------------------------------------- /resources/fonts/geist_sans/GeistVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/fonts/geist_sans/GeistVF.woff -------------------------------------------------------------------------------- /resources/fonts/geist_sans/GeistVF.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/fonts/geist_sans/GeistVF.woff2 -------------------------------------------------------------------------------- /resources/fonts/jetbrains_mono/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/fonts/jetbrains_mono/.DS_Store -------------------------------------------------------------------------------- /resources/fonts/jetbrains_mono/generator_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/fonts/jetbrains_mono/generator_config.txt -------------------------------------------------------------------------------- /resources/fonts/jetbrains_mono/jetbrainsmono-regular-demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/fonts/jetbrains_mono/jetbrainsmono-regular-demo.html -------------------------------------------------------------------------------- /resources/fonts/jetbrains_mono/jetbrainsmono-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/fonts/jetbrains_mono/jetbrainsmono-regular-webfont.woff -------------------------------------------------------------------------------- /resources/fonts/jetbrains_mono/jetbrainsmono-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/fonts/jetbrains_mono/jetbrainsmono-regular-webfont.woff2 -------------------------------------------------------------------------------- /resources/fonts/jetbrains_mono/specimen_files/grid_12-825-55-15.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/fonts/jetbrains_mono/specimen_files/grid_12-825-55-15.css -------------------------------------------------------------------------------- /resources/fonts/jetbrains_mono/specimen_files/specimen_stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/fonts/jetbrains_mono/specimen_files/specimen_stylesheet.css -------------------------------------------------------------------------------- /resources/fonts/jetbrains_mono/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/fonts/jetbrains_mono/stylesheet.css -------------------------------------------------------------------------------- /resources/js/Components/AppHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/AppHeader.tsx -------------------------------------------------------------------------------- /resources/js/Components/ApplicationLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/ApplicationLogo.tsx -------------------------------------------------------------------------------- /resources/js/Components/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/Checkbox.tsx -------------------------------------------------------------------------------- /resources/js/Components/CustomToaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/CustomToaster.tsx -------------------------------------------------------------------------------- /resources/js/Components/CustomTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/CustomTooltip.tsx -------------------------------------------------------------------------------- /resources/js/Components/DangerButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/DangerButton.tsx -------------------------------------------------------------------------------- /resources/js/Components/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/Dropdown.tsx -------------------------------------------------------------------------------- /resources/js/Components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/Footer.tsx -------------------------------------------------------------------------------- /resources/js/Components/InputError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/InputError.tsx -------------------------------------------------------------------------------- /resources/js/Components/InputLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/InputLabel.tsx -------------------------------------------------------------------------------- /resources/js/Components/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/Modal.tsx -------------------------------------------------------------------------------- /resources/js/Components/NavLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/NavLink.tsx -------------------------------------------------------------------------------- /resources/js/Components/Navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/Navigation.tsx -------------------------------------------------------------------------------- /resources/js/Components/PrimaryButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/PrimaryButton.tsx -------------------------------------------------------------------------------- /resources/js/Components/ResponsiveNavLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/ResponsiveNavLink.tsx -------------------------------------------------------------------------------- /resources/js/Components/SearchButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/SearchButton.tsx -------------------------------------------------------------------------------- /resources/js/Components/SearchMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/SearchMenu.tsx -------------------------------------------------------------------------------- /resources/js/Components/SecondaryButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/SecondaryButton.tsx -------------------------------------------------------------------------------- /resources/js/Components/TaskEmails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/TaskEmails.tsx -------------------------------------------------------------------------------- /resources/js/Components/TextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/TextInput.tsx -------------------------------------------------------------------------------- /resources/js/Components/UserDropdownMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/UserDropdownMenu.tsx -------------------------------------------------------------------------------- /resources/js/Components/statistics/Applicants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/statistics/Applicants.tsx -------------------------------------------------------------------------------- /resources/js/Components/statistics/MonthlyRevenue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/statistics/MonthlyRevenue.tsx -------------------------------------------------------------------------------- /resources/js/Components/statistics/SalesChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/statistics/SalesChart.tsx -------------------------------------------------------------------------------- /resources/js/Components/statistics/Subscriptions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/statistics/Subscriptions.tsx -------------------------------------------------------------------------------- /resources/js/Components/statistics/UserEngagement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/statistics/UserEngagement.tsx -------------------------------------------------------------------------------- /resources/js/Components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/ui/avatar.tsx -------------------------------------------------------------------------------- /resources/js/Components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/ui/badge.tsx -------------------------------------------------------------------------------- /resources/js/Components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/ui/button.tsx -------------------------------------------------------------------------------- /resources/js/Components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/ui/card.tsx -------------------------------------------------------------------------------- /resources/js/Components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/ui/chart.tsx -------------------------------------------------------------------------------- /resources/js/Components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /resources/js/Components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/ui/input.tsx -------------------------------------------------------------------------------- /resources/js/Components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/ui/label.tsx -------------------------------------------------------------------------------- /resources/js/Components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/ui/table.tsx -------------------------------------------------------------------------------- /resources/js/Components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/ui/toast.tsx -------------------------------------------------------------------------------- /resources/js/Components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/ui/toaster.tsx -------------------------------------------------------------------------------- /resources/js/Components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/ui/tooltip.tsx -------------------------------------------------------------------------------- /resources/js/Components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/ui/use-toast.ts -------------------------------------------------------------------------------- /resources/js/Components/v1.upload-progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Components/v1.upload-progress.tsx -------------------------------------------------------------------------------- /resources/js/Layouts/AuthenticatedLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Layouts/AuthenticatedLayout.tsx -------------------------------------------------------------------------------- /resources/js/Layouts/GuestLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Layouts/GuestLayout.tsx -------------------------------------------------------------------------------- /resources/js/Pages/Auth/ConfirmPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Pages/Auth/ConfirmPassword.tsx -------------------------------------------------------------------------------- /resources/js/Pages/Auth/ForgotPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Pages/Auth/ForgotPassword.tsx -------------------------------------------------------------------------------- /resources/js/Pages/Auth/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Pages/Auth/Login.tsx -------------------------------------------------------------------------------- /resources/js/Pages/Auth/Register.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Pages/Auth/Register.tsx -------------------------------------------------------------------------------- /resources/js/Pages/Auth/ResetPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Pages/Auth/ResetPassword.tsx -------------------------------------------------------------------------------- /resources/js/Pages/Auth/VerifyEmail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Pages/Auth/VerifyEmail.tsx -------------------------------------------------------------------------------- /resources/js/Pages/BackupDatabase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Pages/BackupDatabase.tsx -------------------------------------------------------------------------------- /resources/js/Pages/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Pages/Dashboard.tsx -------------------------------------------------------------------------------- /resources/js/Pages/Profile/Edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Pages/Profile/Edit.tsx -------------------------------------------------------------------------------- /resources/js/Pages/Profile/Partials/DeleteUserForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Pages/Profile/Partials/DeleteUserForm.tsx -------------------------------------------------------------------------------- /resources/js/Pages/Profile/Partials/UpdatePasswordForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Pages/Profile/Partials/UpdatePasswordForm.tsx -------------------------------------------------------------------------------- /resources/js/Pages/Profile/Partials/UpdateProfileInformationForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Pages/Profile/Partials/UpdateProfileInformationForm.tsx -------------------------------------------------------------------------------- /resources/js/Pages/Welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/Pages/Welcome.tsx -------------------------------------------------------------------------------- /resources/js/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/app.tsx -------------------------------------------------------------------------------- /resources/js/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/bootstrap.ts -------------------------------------------------------------------------------- /resources/js/echo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/echo.js -------------------------------------------------------------------------------- /resources/js/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/lib/utils.ts -------------------------------------------------------------------------------- /resources/js/menus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/menus.tsx -------------------------------------------------------------------------------- /resources/js/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/types/global.d.ts -------------------------------------------------------------------------------- /resources/js/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/js/types/index.d.ts -------------------------------------------------------------------------------- /resources/js/types/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /resources/views/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/resources/views/app.blade.php -------------------------------------------------------------------------------- /routes/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/routes/auth.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/routes/web.php -------------------------------------------------------------------------------- /storage/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/storage/.DS_Store -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/storage/framework/.DS_Store -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/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/glennraya/backupdb/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/tests/.DS_Store -------------------------------------------------------------------------------- /tests/Feature/Auth/AuthenticationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/tests/Feature/Auth/AuthenticationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/EmailVerificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/tests/Feature/Auth/EmailVerificationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordConfirmationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/tests/Feature/Auth/PasswordConfirmationTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordResetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/tests/Feature/Auth/PasswordResetTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/PasswordUpdateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/tests/Feature/Auth/PasswordUpdateTest.php -------------------------------------------------------------------------------- /tests/Feature/Auth/RegistrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/tests/Feature/Auth/RegistrationTest.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/Feature/ProfileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/tests/Feature/ProfileTest.php -------------------------------------------------------------------------------- /tests/Pest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/tests/Pest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glennraya/backupdb/HEAD/vite.config.js --------------------------------------------------------------------------------