Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/juborajnaofel/online-publishing-platform
This project is created by I.E.U. Juboraj Naofel. Technologies used: laravel9, ReactJS, Bootstrap5
https://github.com/juborajnaofel/online-publishing-platform
bootstrap laravel react reactjs
Last synced: 9 days ago
JSON representation
This project is created by I.E.U. Juboraj Naofel. Technologies used: laravel9, ReactJS, Bootstrap5
- Host: GitHub
- URL: https://github.com/juborajnaofel/online-publishing-platform
- Owner: juborajnaofel
- License: mit
- Created: 2022-10-24T08:01:29.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-10T04:03:15.000Z (over 1 year ago)
- Last Synced: 2024-10-12T11:44:04.376Z (about 1 month ago)
- Topics: bootstrap, laravel, react, reactjs
- Language: PHP
- Homepage:
- Size: 504 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Online-publishing-platform
This project is created by I.E.U. Juboraj Naofel.
Technologies used: laravel9, ReactJS, Bootstrap5
In order to test this project you should go through these steps below
For react frontend
- In your front-end aplication configure your laravel-backend api base url in the object const BackendApi = { baseurl: "http://127.0.0.1:8000"}, which is in the file "front-end/config/BackendApi.js". If your laravel base url is "http://127.0.0.1:8000" then no configuration needed.
Then in a separate terminal run the frontend:
- cd front-end
- npm install
- npm start
For laravel backend
Inside .env file,
- ADMIN_MAIL_ADDRESS="[email protected]" To receive email for new published posts,
- provide SMTP credentials
- DB credentialsThen in a terminal run these commands:
- cd laravel-backend
- composer update
- php artisan key:generate
- php artisan migrate
- php artisan db:seed
- php artisan serveThen in a separate terminal run the scheduler:
- php artisan schedule:work
Then in a separate terminal run the queue:
- php artisan queue:work