Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/alkhawarizmiclub/fpk_platform


https://github.com/alkhawarizmiclub/fpk_platform

college college-management end-of-study full-stack fullstack-development laravel laravel-framework laravel8 pfe php react reactjs school school-management

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# 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
```cmd
composer install
```
run database migration
```cmd
php artisan migrate
```

run the server
```cmd
php artisan serve
```

drop all table and insert data
```cmd
php artisan migrate:fresh --seed
```
## Front-end
cd into the frontend folder and follow the next commands


install dependency
```cmd
npm install
```
run in dev mode
```cmd
npm run dev
```