Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/awasefra/laravel-blog-api-with-redis


https://github.com/awasefra/laravel-blog-api-with-redis

api laravel oauth2 php redis

Last synced: 12 days ago
JSON representation

Awesome Lists containing this project

README

        

# Description

This is a api to manage personal blog. Using Laravel, Redis and Oauth be authenticator

# Requirement Install Project

- Laravel ^11.0.0
- PHP ^8.2.4

# Recommend Required Extension on VS Code

- PHP Intelphense
- PHP Debug
- Prettier
- Git Lens
- Laravel Artisan
- Laravel Blade Formatter
- Laravel Blade Snippets
- Laravel Blade Spacer
- Laravel Goto View
- Laravel Intellisense
- Laravel Snippets
- Laravel Blade

# Installations

## Clone repositories

```
git clone https://github.com/Awasefra/laravel-blog-api-with-redis.git
```

## Install resourse laravel

```
composer install
```

## Create & update env File

```
cp .env.example .env
```

###

## Generate key

```
php artisan key:generate
```

## Migrate & Seed

```
php artisan migrate --seed
```

## Generate personal access token client

```
php artisan passport:client --personal
```

## Link Storage

```
php artisan storage:link
```

## Launch Apps

```
php artisan serve
```