Microblogging app built with Laravel and MySQL.
- Depending on your database of choice, create the
.envfile from one of the example files. - Install
phpandcomposer. In macOS, this is as simple asbrew install php composer. - Install
composerpackages withcomposer install. - Install
npmpackages withnpm i. - Run
php artisan key:generateto generate the application's unique key. - Run
php artisan migrateto run the database migrations. - Run
npm run devandphp artisan servesimultaneously. Alternatively, simply build the static files withnpm run buildbefore running the Laravel server.