A Data Collection and Report System for Universities in Ethiopia.
-
Requirements
-
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
-