fpk_platform

Stars
0
Committers
7

Project Specs

This prject was developed based on :

  • Node.js
  • React JS
  • PHP
  • Laravel
  • MySQL

Setup

Back-end

Database creation

Create a database with a given name, create a user for it with the necessary privileges, then write the config on the .env file in the back.

Database migration

cd into the backend folder and follow the next commands install laravel dependency run

composer install

run database migration

php artisan migrate 

run the server

php artisan serve

drop all table and insert data

php artisan migrate:fresh --seed

Front-end

cd into the frontend folder and follow the next commands install dependency

npm install

run in dev mode

npm run dev