This is a simple blog application built with Laravel.
To install locally simply clone this repository and run the following commands:
git clone https://github.com/SlimGee/larablog.gitcd larablogcomposer installInstall npm dependencies
npm installor if you prefer yarn
yarn installStart the dev asset compiler
npm run devConfigure your .env file
cp .env.example .envAdd your database credentials to the .env file
If you're using laravel valet run this project with
valet openOr if simply using php artisan serve
php artisan serveEverything in this app is behind authentication, so you'll need to register and login to access the blog posts.
To run tests, run the following command:
php artisan test