Composer & Node Packages

Composer Install

By default project comes with composer installed, but if for some reasons you uploaded project to your server without the vendor which contains the files from all php packages used in the project development, follow the steps below.

  1. Open terminal on your server

  2. open the root directory of the project on your server.

  3. Then run the command below in the root directory of the project on your server in the terminal

composer install

Node Packages

Backend comes with generated app.css and app.js already build, hence node_modules folder is not included in the project files.

You can install the npm packages on your server by simiply running the following command in your terminal.

  1. Open terminal on your server

  2. change directory to the root directory of your backend on your server

  3. Then run the "npm install" to install all needed/missing package for the frontend

  4. Then run "npm run prod" to generate the app.css and app.js file need for the frontend of the admin panel

Last updated