Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/alkhawarizmiclub/fpk_platform
- Owner: alkhawarizmiclub
- Created: 2024-04-28T23:58:57.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-07-23T08:19:52.000Z (5 months ago)
- Last Synced: 2024-09-28T19:41:25.856Z (3 months ago)
- Topics: college, college-management, end-of-study, full-stack, fullstack-development, laravel, laravel-framework, laravel8, pfe, php, react, reactjs, school, school-management
- Language: JavaScript
- Homepage:
- Size: 15.7 MB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
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
```