Custom Laravel blog built with Laravel, Vue and Bulma.
-
Create a database.
-
Pull Laravel/php project from GitHub.
git clone https://github.com/vladogrcic/custom-web-blog.git
-
Open the console and cd your project root directory
composer install
or
php composer.phar install
No application encryption key has been specified.
-
Rename .env.example file to .env inside your project root.
Windows wont let you do it so you have to open your console, cd to your project root directory and run:
mv .env.example .env
-
Then create the encryption key.
php artisan key:generate
-
Open the .env file and fill in the database info along with other information.
-
php artisan storage:link
-
php artisan migrate
-
php artisan db:seed
-
php artisan serve