> For the complete documentation index, see [llms.txt](https://lorvent.gitbook.io/clear/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://lorvent.gitbook.io/clear/clear_vue/basic-installation/clear-17-installation.md).

# 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`
```
