Codes for the new blog plataform to be used in hellonina.
This repository is a learning object for building a new blog plataform.
To run the project you'll need to supply Laravel server requirements as shown in the documentation:
- PHP >= 5.6.4
- OpenSSL PHP Extension
- PDO PHP Extension
- Mbstring PHP Extension
- Tokenizer PHP Extension
- XML PHP Extension
Clone/extract the project source onto your machine:
git clone https://github.com/ninamarra/laravel-blog.git
Install the project with composer:
cd your/project/folder
composer install
Create a new .env file from the .env.example and generate a new key for your project:
cp .env.example .env
php artisan key:generate
All set. To run the project use:
php artisan serve
You need to update the .env file with your credentials. Don't forget to create the database.
- Laravel - The web framework used
- Renda template - Blog template
- CoreUI - Admin panel template
- Nina Marra - Initial work - the blog
I'm keeping solutions for doubts that appeard during the development in a file - see REFERTO.md for details.