Category: Technology
Composer and other Commands for Laravel Project (Usage Command)
To install all php dependencies if you have not uploaded vendorĀ folder. To install and update Composer: composer install composer update Usage Commands: Migrate Tables => php artisan migrate Seed Database => php artisan db:seed –class=InitDbSeeder Start Server => php artisan serve Watch Server => yarn watch or npm run watch Other Commands #…
Project Documentation Templates
# Project Level Documentation Template 1 Project Initiation Business Case Project Charter PID Document Project Scope 2 Project Planning Gantt Chart SWOT Analysis Action Plan Template 3 Project Execution Execution Template Requirement Tracability Implementation Test Case Template 4 Project Tracking RACI Excel Template GAP Analysis Template Root Cause Analysis RAID Log Excel Execution Tracking 5…
Project Management Methodology
Definition of a Project A project is defined as a temporary endeavor undertaken to create a unique product or service- PMBOK. A project is considered to be a temporary endeavor with specific goals to accomplish defined objectives. The completion point of the project must be defined and agreed upon by stakeholders during the Initiation of…
How to deploy and run Laravel application on shared hosting
It is possible and very easy to deploy and run Laravel application on shared hosting server Locate the following line: require DIR.’/../vendor/autoload.php’; Modify the path to include the directory where Laravel is installed. For example, if Laravel is in the project directory, you would change the line as follows:require DIR.’/../laravel/vendor/autoload.php’ Locate the following line:require DIR.’/../bootstrap/app.php’;…