├── backend
├── dump.html
├── public
│ ├── favicon.ico
│ ├── robots.txt
│ ├── .htaccess
│ └── index.php
├── resources
│ ├── css
│ │ └── app.css
│ ├── js
│ │ ├── app.js
│ │ └── bootstrap.js
│ └── views
│ │ └── test.blade.php
├── database
│ ├── .gitignore
│ ├── seeders
│ │ └── DatabaseSeeder.php
│ ├── migrations
│ │ ├── 2014_10_12_100000_create_password_reset_tokens_table.php
│ │ ├── 2014_10_12_000000_create_users_table.php
│ │ ├── 2019_08_19_000000_create_failed_jobs_table.php
│ │ └── 2019_12_14_000001_create_personal_access_tokens_table.php
│ └── factories
│ │ └── UserFactory.php
├── bootstrap
│ ├── cache
│ │ └── .gitignore
│ └── app.php
├── storage
│ └── framework
│ │ ├── sessions
│ │ └── .gitignore
│ │ ├── testing
│ │ └── .gitignore
│ │ ├── views
│ │ └── .gitignore
│ │ ├── cache
│ │ ├── data
│ │ │ └── .gitignore
│ │ └── .gitignore
│ │ └── .gitignore
├── docker
│ ├── docker-compose.yml
│ ├── supervisord.conf
│ ├── nginx.conf
│ └── Dockerfile
├── tests
│ ├── TestCase.php
│ ├── Unit
│ │ └── ExampleTest.php
│ ├── Feature
│ │ └── ExampleTest.php
│ └── CreatesApplication.php
├── .gitattributes
├── package.json
├── vite.config.js
├── .gitignore
├── .editorconfig
├── app
│ ├── Http
│ │ ├── Middleware
│ │ │ ├── EncryptCookies.php
│ │ │ ├── VerifyCsrfToken.php
│ │ │ ├── PreventRequestsDuringMaintenance.php
│ │ │ ├── TrimStrings.php
│ │ │ ├── TrustHosts.php
│ │ │ ├── Authenticate.php
│ │ │ ├── ValidateSignature.php
│ │ │ ├── TrustProxies.php
│ │ │ └── RedirectIfAuthenticated.php
│ │ ├── Controllers
│ │ │ ├── Controller.php
│ │ │ └── DumpsController.php
│ │ └── Kernel.php
│ ├── Providers
│ │ ├── BroadcastServiceProvider.php
│ │ ├── AppServiceProvider.php
│ │ ├── AuthServiceProvider.php
│ │ ├── EventServiceProvider.php
│ │ └── RouteServiceProvider.php
│ ├── Console
│ │ ├── Commands
│ │ │ ├── HealthcheckCommand.php
│ │ │ └── ServerDumpCommand.php
│ │ └── Kernel.php
│ ├── Exceptions
│ │ └── Handler.php
│ ├── Services
│ │ └── Healthcheck.php
│ ├── Descriptors
│ │ └── HtmlDumpDescriptor.php
│ ├── Models
│ │ └── User.php
│ ├── Outputs
│ │ └── RedisOutput.php
│ └── Dumpers
│ │ └── HtmlCustomDumper.php
├── routes
│ ├── channels.php
│ ├── api.php
│ ├── console.php
│ └── web.php
├── config
│ ├── cors.php
│ ├── services.php
│ ├── view.php
│ ├── hashing.php
│ ├── broadcasting.php
│ ├── sanctum.php
│ ├── filesystems.php
│ ├── cache.php
│ ├── queue.php
│ ├── mail.php
│ ├── auth.php
│ ├── logging.php
│ ├── database.php
│ ├── app.php
│ └── session.php
├── phpunit.xml
├── .env.example
├── artisan
├── composer.json
└── README.md
├── ui
├── .env
├── .browserslistrc
├── src
│ ├── vite-env.d.ts
│ ├── main.tsx
│ ├── components
│ │ ├── FlashStack.ts
│ │ ├── Diff.tsx
│ │ ├── DumpFrame.tsx
│ │ ├── DumpsDiff.tsx
│ │ ├── Dumps.tsx
│ │ └── Logo.tsx
│ ├── App.tsx
│ ├── collections
│ │ └── DumpsCollection.ts
│ └── models
│ │ └── Dump.ts
├── public
│ ├── logo.png
│ ├── screenshot_1.png
│ ├── screenshot_2.png
│ └── screenshot_3.png
├── tsconfig.node.json
├── vite.config.ts
├── index.html
├── tsconfig.json
└── package.json
├── .github
└── FUNDING.yml
├── .dockerignore
├── .gitignore
├── docker-compose.yaml
├── metadata.json
├── Makefile
├── README.md
├── Dockerfile
└── docker.svg
/backend/dump.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ui/.env:
--------------------------------------------------------------------------------
1 | BROWSER=none
--------------------------------------------------------------------------------
/backend/public/favicon.ico:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/backend/resources/css/app.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ui/.browserslistrc:
--------------------------------------------------------------------------------
1 | Electron 17.1.1
2 |
--------------------------------------------------------------------------------
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | github: [artifision]
--------------------------------------------------------------------------------
/backend/database/.gitignore:
--------------------------------------------------------------------------------
1 | *.sqlite*
2 |
--------------------------------------------------------------------------------
/.dockerignore:
--------------------------------------------------------------------------------
1 | ui/node_modules
2 | backend/vendor
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | ui/build
3 | .idea
--------------------------------------------------------------------------------
/backend/resources/js/app.js:
--------------------------------------------------------------------------------
1 | import './bootstrap';
2 |
--------------------------------------------------------------------------------
/backend/bootstrap/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/backend/public/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow:
3 |
--------------------------------------------------------------------------------
/ui/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
68 | {mappedNodes}
69 | :
70 | The dumps are identical
: 72 | <> 73 |75 | Computing difference... 76 |
77 | > 78 | } 79 |