Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tim1023/redux-laravel
A CRUD blog system with material design
https://github.com/tim1023/redux-laravel
laravel55 material-ui-next react react-router redux
Last synced: 15 days ago
JSON representation
A CRUD blog system with material design
- Host: GitHub
- URL: https://github.com/tim1023/redux-laravel
- Owner: Tim1023
- License: mit
- Created: 2018-02-26T08:16:59.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-06T15:28:03.000Z (almost 7 years ago)
- Last Synced: 2025-01-10T04:52:11.273Z (15 days ago)
- Topics: laravel55, material-ui-next, react, react-router, redux
- Language: JavaScript
- Homepage: http://deyangzhao.com
- Size: 756 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# redux-laravel
Please follow the guide.
1. `git clone`
2. `update the .env file along with database connection`
3. `composer install && composer update`
4. `php artisan key:generate`
5. `php artisan migrate`
6. `php artisan db:seed`
7. `npm install`## Install Passport
Open a terminal window and install the passport using following command
```
php artisan passport:install
```
## Update the Passport keys in .env file
Copy the keys for personal and password grants in `.env` file```
PERSONAL_CLIENT_ID=1
PERSONAL_CLIENT_SECRET=xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
PASSWORD_CLIENT_ID=2
PASSWORD_CLIENT_SECRET=xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
```