volgh - Angular16 Admin & Dashboard Template

Note:-

Please refer Faq's page in documentation itself for queries and customization like Colors, RTL, Dark style..etc.

Angular Setup

Installing the Angular CLI

You can use Angular CLI to create projects, generate application and library code, and perform a variety of ongoing development tasks such as testing, bundling, and deployment.

Install the Angular CLI globally.

To install the CLI using npm, open a terminal/console window and run the following command.

npm install –g @angular/cli
Create a workspace and initial application

You develop apps in the context of an Angular workspace.
To create a new workspace and initial starter app:

  1. Run the CLI command ng new and provide the name filename as my-app, as shown below
  2. ng new my-app
    
  3. The ng new command prompts you for the information about features to include in the initial app. Accept the defaults by pressing the Enter or Return key.

The Angular CLI installs the necessary Angular npm packages and other dependencies. This can take a few minutes. The CLI creates a new workspaces and a simple Welcome app, ready to run.

Run the application

The Angular CLI includes a server, so that you can build and serve your app locally.

  1. Navigate to the workspace folder, such as my-app.
  2. Run the following commands:
cd my-app
ng serve --open

The ng serve command launches the server, watches your files, and rebuilds the app as you make changes to those files. The --open or -o just Option automatically opens your browser to http://localhost:4200/.

volgh Setup

If you have already download and install node.js and Angular CLI then ignore prerequisites.

Prerequisites
Node.js

Download latest version of node.js from nodejs.org.
Install Node.js using downloaded file.
To check your node version, run node -v in a terminal/console window (cmd)

Angular CLI

To install the Angular CLI using npm, open a terminal/console window and run the following command.


npm install –g @angular/cli
To Update the Angular CLI using npm, open a terminal/console window and run the following command.

ng update @angular/cli @angular/core
					or
npm uninstall --save-dev @angular/cli
npm install -g @angular/cli@latest   // To Update globally
npm install --save-dev @angular/cli@latest  // To Update local project
Setup an volgh Template by
  1. Download the volgh rar/zip file.
  2. Extract it and then go in to volgh Folder here .
  3. Now from a terminal window, navigate to the directory containing your application
  4. You can import all dependency by installing npm command
  5. npm install
    or
    npm install -force
  6. Now you are in stage to successfully run volgh using below command:
  7. ng serve
    or
    ng serve --open
    Once you serve your application by default it will take their default port using http://localhost:4200/
Build Application
Build your application for host on server using below command:
ng build