This Repository is dedicated to our project in Application Development subject
Before you clone the repo, please make sure you have installed Git, Composer, Laravel, MySQL, and the editor of your choice to work on this project.
Clone the repository from here https://github.com/mhdrofiq/healthapp
Switch to the repo folder
cd healthapp
Install all the dependencies using composer
composer install
Copy the example env file and make the required configuration changes in the .env file
cp .env.example .env
Generate a new application key
php artisan key:generate
Run the database migrations (Set the database connection in .env before migrating) To set a database connection, if you are using MySQL, open MySQL command line app then run the following command to create a database called healthapp in your computer.
create database healthapp
Then in the terminal where you have switched to the repo folder, run
php artisan migrate
Then to start the local development server
php artisan serve