Obviously not a dropbox replacement but a good foundation. This app was mainly built to get a good grasp on Livewire and what it can do.
Search using TNTSearch
Uploading using FilePond
You'll need to run:
composer installnpm installphp artisan key:generate
Copy the .env.example and rename .env
Set up the database on your local machine
DB_DATABASE=bitbox
DB_USERNAME=root
DB_PASSWORD=
Then run:
php artisan migratephp artisan serve
Should be able to view @ localhost:8000
Search won't work until you run:
php artisan scout:import "App\Models\Item"
But you'll have to run this after you add some items a command like this can be replaced with a event listener or cron job depending on how you build this out.