Skip to content
This repository has been archived by the owner on Apr 7, 2023. It is now read-only.

Latest commit

 

History

History
executable file
·
29 lines (21 loc) · 1.16 KB

readme.md

File metadata and controls

executable file
·
29 lines (21 loc) · 1.16 KB

Moe HEMIS

About HEMIS

A Data Collection and Report System for Universities in Ethiopia.

Installation

  1. Requirements

    • Apache php server
    • MySql database server
    • Composer package manager: get here.
    • Node.js: get here.
  2. Running the Project

    • Clone/Download the Project

    • Create a database (and user). As an option you can run the create_db.sql file provided in the /docs folder in the root directory

    • Copy the .env.example file and rename it to .env

    • Provide your database name, user, and password in the .env file

    • Install composer dependencies: composer install

    • Generate Application Key: php artisan key:generate

    • Install node dependencies: npm install

    • Migrate Database Tables and Seed them: php artisan migrate:fresh --seed

    • If the previous step doesn't work, try redoing it after clearing your composer cache: composer dump-autoload

    • Start working from there

    • Run the application on a PHP server; you can use php artisan serve command in the root directory