Blog Bridge is an online publishing platform with membership options. It allows users to create blog posts with a title and description, and users can choose their own membership package and make the payment process via stripe payment system.
To run this project, you need to have these installed on your local machine.
After downloading the project from github, you need to follow these commands:
- Switch to the
core
folder and make a copy of.env.example
into your local.env
cp .env.example .env
- Run composer install command to install/reload the project dependencies
composer install
- Then run this command to generate the application key
php artisan key:generate
- Give access to the storage folder of the project
chmod -R 777 storage/
- For table migration to the database, run the command below
php artisan migrate:fresh --seed
- After migration, you can start the server. (No need for this command if you are using Laragon or Docker)
php artisan serve
- Now open another terminal and run npm for loading the frontend dependencies
npm install && run dev