https://github.com/bvipul/student-management-system
Student Management System With Laravel Apis and React Frontend with Redux for State Management
https://github.com/bvipul/student-management-system
Last synced: about 2 months ago
JSON representation
Student Management System With Laravel Apis and React Frontend with Redux for State Management
- Host: GitHub
- URL: https://github.com/bvipul/student-management-system
- Owner: bvipul
- License: mit
- Created: 2019-09-26T17:24:46.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-03-26T00:35:34.000Z (over 3 years ago)
- Last Synced: 2025-02-01T04:31:50.303Z (9 months ago)
- Language: PHP
- Size: 3.67 MB
- Stars: 3
- Watchers: 2
- Forks: 3
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Student Management System - SMP
A Laravel Application With React Frontend# Installation
Please check the official laravel installation guide for server requirements before you start. [Official Documentation](https://laravel.com/docs/5.6/installation#installation)
Clone the repository
Generate a new application keyphp artisan key:generate
Generate JWT Secret
php artisan jwt:secret
Run the database migrations (**Set the database connection in .env before migrating**)
php artisan migrate
Run the database seeders
php artisan db:seed
Install the javascript dependencies using npm(node v8.10, npm v5.6)
npm install
Compile the dependencies
npm run dev
Start the local development serverphp artisan serve
You can now access the server at http://localhost:8000
**Command list**
git clone https://github.com/bvipul/student-management-system.git
cd student-management-system
cp .env.example .env
composer install
npm install
npm run dev
php artisan key:generate
php artisan jwt:secret
php artisan migrate
php artisan db:seed
php artisan serve## Logging In
`php artisan db:seed` adds two users. The credentials are as follows:
* Administrator: `admin@admin.com`
* Student: `student@student.com`Password: `password`