A Twitter remake built on Laravel 5.6, VueJS 2 and Bootstrap 4.
Make sure your development machine meets the Laravel 5.6's system requirements. (Try Homestead or Laragon)
- Clone the repository onto your machine
- Install dependencies with
composer install
and thennpm install
- Run
php artisan storage:link
to link the storage directory. It's important to run this before the next step, so the application can properly generate assets. - Run
npm run dev
ornpm run watch
(whichever you prefer) to setup and compile assets (CSS, JS and images) - Copy the .env.example values and create and paste them in a .env file
- Run
php artisan key:generate
- Add your database connection details to the .env file and run
php artisan migrate