This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -git clone linktogithubrepo.com/ projectName | |
| -Go to the folder application using cd command on your cmd or terminal | |
| -Run composer install on your cmd or terminal | |
| -Run npm install ( | |
| if error encountered in this process, | |
| 1). rm -rf node_modules ->2). npm cache clear --force ->3). then npm install | |
| Or | |
| 1). npm cache clear --force ->2). then npm install | |
| ) | |
| -cp .env.example .env -> Copy .env.example file to .env on the root folder. You can type copy .env.example .env if using command prompt Windows or cp .env.example .env if using terminal, Ubuntu |