The web application mute84.com
is a personal project to learn about Laravel and create a fun way to share audio projects.
- Install composer dependencies with
composer install
. - Customize the
.env
file aftercp .env.example .env
.- Set the absolute path to the local database sqlite file in the
.env
. - Set the App Key with
php artisan key:generate
.
- Set the absolute path to the local database sqlite file in the
- Run the migrations with
php artisan migrate
- Link the storage to public directory with
php artisan storage:link
- Serve the Application with Herd or
php artisan serve
.