Getting Started


Getting Started
Note: we recomonded you to please make your one own css file & one js files and add that in your page, so whenever the update of Agastya admin comes it does not affect your code.
If you are using css then no need to follow below steps. Just go to the html/ltr/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.

1. Install Node.js From https://nodejs.org/en/download/


2. After that open command promt or any other terminal and go to Package Path.


3. 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

4. For yarn package manager.

npm install --global yarn

To check weather is yarn succesfully install or not.

yarn --version

5. Gulp is a cross-platform, streaming task runner that lets developers automate many development tasks. To install gulp globally has inclue:

npm i gulp-install

If you have previously installed gulp then remove it.

npm rm --global gulp

To check weather is gulp succesfully install or not.

gulp --version

6. 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.