Getting Started
If you are using css then no need to follow below steps. Just go to the admin-pro/src/main/index.html and open that file in to the browser for desire output.
If you are using scss and package managing then we have compilation tool (gulp) for that please follow the below steps.
Install Node.js From https://nodejs.org/en/download/
After that open command promt or any other terminal and go to Package Path. admin-pro/
Npm is a default package manager for the JavaScript runtime environment Node.js. If you've already then update once.
npm install --global npm@latest
To check weather is node succesfully install or not.
npm --version
For yarn package manager.
npm install --global yarn
To check weather is yarn succesfully install or not.
yarn --version
Gulp is a cross-platform, streaming task runner that lets developers automate many development tasks. To install gulp globally has inclue:
npm install --global gulp-cli
If you have previously installed gulp then remove it.
npm rm --global gulp
To check weather is gulp succesfully install or not.
gulp --version
Below Command will execute all the assets(js,scss) to the dist folder separately.
gulp
How to Install npm dependencies?
In your root folder enter the following command to install
the project dependencies: npm install, this
command will install all the template libraries inside the
node_modules folder, after that you need to run this
command gulp copy to include dependencies in
assets/libs folder.