clear
  • Introduction
  • HTML
  • Html Structure
    • Header
    • Left Side Menu
    • Right Side Menu
    • Main Content
      • Buttons
      • Font Icons
      • Progress Bars
      • Maps
      • Lock Screen
  • FAQ's
  • SCSS
  • CSS Files
  • Javascript Files
  • Plugins
  • Start New Page
    • Menu Bar Fold
    • Boxed and Moveable Header
    • Moveable Header
    • Boxed and Fixed Header
    • Fixed Header and Menu
  • Vue Version
    • Basic Installation
      • Clear 1.7 installation
    • Basic Structure
      • Layout structure
      • Leftmenu structure
      • Start New Page
      • Changing layouts
  • Changing Color Scheme
  • Laravel Spark Skin
    • Spark Installation
    • Using .vue files
    • Adding External Plugins
  • Laravel Version
    • Changing skin
    • Changing Layouts
Powered by GitBook
On this page
  • 1) Install Dependencies
  • 2) Install Assets
  • 3) serve with hot reload at localhost:8000
  • 4) build for production with minification

Was this helpful?

  1. Vue Version
  2. Basic Installation

Clear 1.7 installation

If you are using version 1.7 of clear, Run the below commands

1) Install Dependencies

Run the below command to get all the dependencies from package.json

yarn install

2) Install Assets

Run the below command to get the plugins from bower.json

bower install

3) serve with hot reload at localhost:8000

The following command will launch a browser window with localhost:8000 with hot module replacement. To change the default port , edit the port in config.index.js

npm run dev

4) build for production with minification

The following command will build the project into the dist folder. Built files are meant to be served over an HTTP server.

Opening index.html over file:// won't work.

`npm run build`
PreviousBasic InstallationNextBasic Structure

Last updated 5 years ago

Was this helpful?