SR UPGRADE COMMENCEMENT 1. GIT tutorial For the first-time-user, one should download the project from Git repository. a. git clone “url” This is done only once, since it downloads the whole project. b. git add -A This prepares the changes which are currently made, before any commitment c. git commit -m “message” This will save the changes that are made. Necessary before any pull/push d. git pull This will (download) the changes that were made on the project in the repository e. git push This will (upload) the project changes that were made on your computer 2. PHP Laravel Framework (version 5.6.*) *For further documentation, goto https://laravel.com/docs/5.6/ a. framework installation Requirements: php >= 7.1.3 JSON php extension To install laravel, you need composer to manage dependencies. Composer is available here… https://getcomposer.org/ Then, Navigate to your local directory, where you want your project to be located, And then… Run: b. framework deployment To access the project as website on your browser Navigate into your newly created project, And then Run: then , go to your browser. On the address panel, type http://localhost:8000 Libraries required: Laravel spatie Run: "composer require spatie/laravel-permission" /* * *Wednesday, October 24, 2018. * */ 1. updated PHP Laravel Framework from V5.6.* to V5.7.* after pulling (download) the project from gitlab repository, navigate to the project root directory and then, Run: "composer update" *without quotation! be patient... this will take a while... 2. updated node.js First, download nodejs.msi on your computer the setup can be found here https://nodejs.org/en/download/ then download and install the setup, following the necessary instructions Second, open the terminal/cmd and navigate to the project root directory and then, Run: "npm install" *again, without quotation! be patient... this will take a while longer than 1. above...