A simple blog for demonstration purpose. Based on Laravel 7.
Clone the repository- Then cd into the folder with this command-
cd myblog
Then do a composer install
composer install
Then create a environment file using this command-
cp .env.example .env
Then edit .env file with appropriate credential for your database server. Just edit these two parameter(DB_USERNAME, DB_PASSWORD).
Then create a database named "myblog" and then do a database migration using this command-
php artisan migrate
generate application key, which will be used for password hashing, session and cookie encryption etc.
php artisan key:generate
Run npm install
to install all front end dependencies
Run php artisan storage:link
to link storage to public file
Do not hesitate to contribute to the project by adapting or adding features ! Bug reports or pull requests are welcome.
This project is released under the MIT license.