Git is hard: screwing up is easy, and figuring out how to fix your mistakes is fucking impossible.
So here are some common bad situations and how you can get out of them in plain english*.
To install switch to the project directory and load the Composer dependencies.
composer installNext you need to install dependencies using yarn/npm.
yarn installAnd finally we need to run Laravel Mix in order to compile the assets.
yarn run devNow you should be able to visit the site and to see my blog. Of course you need to have a local environment setup already.
The blog articles get cached with the first request. So in order to see a change, you need to delete the cache:
php artisan cache:clear