An open API service indexing awesome lists of open source software.

https://github.com/amanjaiman1/the-blog-app


https://github.com/amanjaiman1/the-blog-app

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

## Laravel 8 Complete Blog

## Requirements
• PHP 7.3 or higher

• Node 12.13.0 or higher

## Usage

Setting up your development environment on your local machine:

```
git clone @github_link
cd laravel-8-complete-blog
cp .env.example .env
composer install
php artisan key:generate
php artisan cache:clear && php artisan config:clear
php artisan serve
```

## Before starting

Create a database

```
mysql
create database laravelblog;
exit;
```

Setup your database credentials in the .env file

```
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=laravelblog
DB_USERNAME={USERNAME}
DB_PASSWORD={PASSWORD}
```

Migrate the tables
```
php artisan migrate
```