https://github.com/srph/pasei
A dissertation grading application for Pasay High School
https://github.com/srph/pasei
laravel school web-app
Last synced: 3 months ago
JSON representation
A dissertation grading application for Pasay High School
- Host: GitHub
- URL: https://github.com/srph/pasei
- Owner: srph
- Created: 2016-08-20T12:16:02.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2018-02-17T09:01:07.000Z (over 8 years ago)
- Last Synced: 2025-03-21T22:42:39.764Z (over 1 year ago)
- Topics: laravel, school, web-app
- Language: PHP
- Homepage: https://pasei.kierb.com
- Size: 1.35 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# pasei
Pasei is a school grading system for Pasay High School written [Laravel 5.3](https://laravel.com/docs/5.3).

## Requirements
- PHP `>=5.6` (`PHP 7` works) and [Composer](https://getcomposer.org/)
- Node.js `>=4.x` / npm `>= 2.x`
- MySQL `5.6`
## Setup
- **Install dependencies**
```bash
composer install
npm install
```
- **Setup environment file** — Afterwards, don't forget to check `.env` and fill up the database fields properly. Also, we have a mailing feature so don't forget to setup the email config as well. **But**, you can leave it out by setting the value of `MAIL_DRIVER` to `log` (`MAIL_DRIVER=log`)
```bash
cp .env.example .env
```
- **Run database migrations**
```bash
artisan migrate
artisan db:seed # Optional. Leave out to set a clean database.
```
- **Generate key**
```bash
artisan key:generate
```
- **Setup assets**
```bash
gulp # Build the assets one time, or
gulp && gulp watch # If you're actively working
```