Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/benjy8001/monolith_to_microservices
React and Laravel Breaking a monolith to microservices
https://github.com/benjy8001/monolith_to_microservices
api-rest laravel laravel9 react
Last synced: 6 days ago
JSON representation
React and Laravel Breaking a monolith to microservices
- Host: GitHub
- URL: https://github.com/benjy8001/monolith_to_microservices
- Owner: benjy8001
- Created: 2022-05-06T20:30:22.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-06-30T19:55:02.000Z (over 2 years ago)
- Last Synced: 2023-03-06T03:55:33.348Z (over 1 year ago)
- Topics: api-rest, laravel, laravel9, react
- Language: PHP
- Homepage:
- Size: 1.33 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```
php artisan passport:install
artisan make:controller RoleController --api
docker run --network=nginx-proxy --rm -v `pwd`/:/project -w /project -u $(id -u):$(id -g) node:lts-alpine npx create-react-app react-admin --template typescript
npm i react-router-dom @types/react-router-dom
docker run --network=nginx-proxy --rm -v `pwd`/:/project -w /project -u $(id -u):$(id -g) node:lts-alpine npx create-next-app next-checkout
npm i --save-dev typescript @types/react @types/node
composer init --name benjy8001/microservices-common --description "This is a package for the Microservices testing" --author "Benjamin Mabille " --type library --license MIT --require "laravel/framework:^7.*"
``````
Redis for API cache (big queries set)
RabitMQ cloud for event dispatching for microservices
Stripe for CB payments
```