Please Run the Backend Tool before executing the Front end.
Here I am using laravel homestead, Please follow instruction on following official link and install https://laravel.com/docs/5.4/homestead#installation-and-setup
This step should be executed from the host machine not inside Vagrant Homestead
In this step we'll re-configure Homestead to create new site and database
linux:
nano ~/.homestead/Homestead.yaml
Under the tag of sites: add new mapping
- map: temper-onboarding-tool.dev
to: /home/vagrant/Code/TemperOnboardingTool/public
Please note that my application source code placed inside ~/Code directory.
Under the tag of databases: add new database
- temper-onboarding-tool
Re-provision our vagrant machine to make Homestead create the website and database we just configured above.
vagrant reload --provision
Add application domain names in your local machine hosts file to point to the Vagrant machine IP address:
linux:
sudo nano /etc/hosts
192.168.10.10 temper-onboarding-tool.dev
composer install
composer.lock file attached with source code :)
php artisan migrate
visit http://temper-onboarding-tool.dev/import
Run it only once (needs to be imrpoved).
visit http://temper-onboarding-tool.dev/admin
Minimal version available in the directory TemperOnboardingToolFontEnd
If you open the index.html file in the browser you will see following.
MH Rilwan rilwanfit@gmail.com