My professional blog
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
What things you need to install the software and how to install them
MySQL
PHP 7 or more
Install database with install_db.sql script
database\install_db.sql
Check you have installed sass command in your system and after use composer command
composer install
Update database parameter in config.php
<?php
return (object) array(
'host' => 'mysql:host=localhost;dbname=blog;charset=utf8',
'username' => 'root',
'password' => ''
);
?>
If you need compile sass files
sass --watch sass:public/css/ --style=compressed --no-source-map
Or
sass sass:public/css/ --style=compressed --no-source-map
- Composer - A Dependency Manager for PHP
- SASS - Professional grade CSS extension
- Bootstrap - front-end framework
- Jquery - JavaScript library
- Twig - Modern template engine for PHP
- Kevin DEFARGE - Initial work - kdefarge
This project is licensed under the GNU General Public License v3.0 - see the LICENSE.md file for details