https://github.com/mohammadnazm/school-management-system
https://github.com/mohammadnazm/school-management-system
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mohammadnazm/school-management-system
- Owner: mohammadnazm
- Created: 2024-07-17T07:09:45.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-07-17T07:11:53.000Z (10 months ago)
- Last Synced: 2025-01-17T02:09:52.414Z (4 months ago)
- Language: JavaScript
- Size: 47.2 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Installation
Clone the repo locally using the command below or download the zip file:
```sh
git clone https://github.com/moktan456/School-Management-System.git
cd School-Management-System
```Install PHP dependencies:
```sh
composer install
```Install NPM dependencies:
```sh
npm install
```Build assets:
For development run
```sh
npm run watch
```Setup configuration:
```sh
cp .env.example .env
```Generate application key:
```sh
php artisan key:generate
```Create an empty database and update .env file
```sh
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=
DB_USERNAME=
DB_PASSWORD=
```Run database migrations:
```sh
php artisan migrate
```
Run database seeder:
```sh
php artisan db:seed
```Run the dev server and click the link generated or open browser and enter 127.0.0.1:8000:
```sh
php artisan serve
```
# school-management-system