https://github.com/amanjaiman1/the-blog-app
https://github.com/amanjaiman1/the-blog-app
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/amanjaiman1/the-blog-app
- Owner: amanjaiman1
- Created: 2023-11-09T18:21:48.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-09T18:24:02.000Z (over 1 year ago)
- Last Synced: 2025-01-16T10:51:55.850Z (5 months ago)
- Language: PHP
- Size: 1010 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```