Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/awasefra/laravel-blog-api-with-redis
- Owner: Awasefra
- Created: 2024-07-26T11:06:50.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-09-01T05:26:44.000Z (5 months ago)
- Last Synced: 2024-11-25T10:41:53.752Z (2 months ago)
- Topics: api, laravel, oauth2, php, redis
- Language: PHP
- Homepage:
- Size: 143 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```