Installation
You're setting up the development environment to create your web application.
Laravel
Start command prompt window or terminal and change directory to laravel
cd laravel
For installing vendor run in terminal or CMD:
composer install
Copy .env file run in terminal or CMD:
cp .env.example .env
For generating key run in terminal or CMD:
php artisan key:generate
Create database with name "health-wellness" in your sqlyog,laragon,xampp,wamp
- Open and edit the /.env file and provide your server details:
DB_CONNECTION="mysql"
DB_HOST="127.0.0.1"
DB_PORT="3306"
DB_DATABASE="YOUR DATABASE NAME"
DB_USERNAME="YOUR USERNAME"
DB_PASSWORD="YOUR PASSWORD"- If you want a dummy data into the application, you have to set this key to
true
IS_DUMMY_DATA=false
- Then run the below commands
php artisan migrate
php artisan db:seed
OR
php artisan migrate:fresh --seed
For installing node_modules run in terminal or CMD:
npm install
For building css and js run in terminal or CMD:
npm run dev
OR
npm run build
OR
npm run watch
To run project
php artisan serve
Login Credentials
For Admin Login
Username:demo@kivicare.com
Password:12345678OR
For Doctor Login
Username:doctor@kivicare.com
Password:12345678OR
For Receptionist Login
Username:receptionist@kivicare.com
Password:12345678OR
For User Login
Username:john@gmail.com
Password:12345678