# 3. Server Startup

### 3.1 Start Server and Installation

Go back to your command prompt after completing Step 2.1. Now, use the command:

<mark style="color:red;">**npm run basic-install**</mark>

NOTE: if this step thows issue related to the BUILD failure, then you can follow this steps in your terminal

```
// Considering working directory as projects root directory
> cd installation
> npm run build

// On successful build completion, change directory to root
> cd ..

// Run the server using any of the below commands
> npm run start 
// OR
> node server.js
```

This command will generate <mark style="color:red;">env</mark> files and a build for installation.

When the command is done, it will display the output on your command prompt as shown on the screen below.&#x20;

<figure><img src="https://756612007-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FfAZK2jZ3mL4ir3caZa0b%2Fuploads%2FACc4ltqDi42mq6n7Txlg%2Fimage153.png?alt=media&#x26;token=50384e47-4928-41bf-a0a0-1283de678fa2" alt=""><figcaption></figcaption></figure>

Thereafter, navigate to <mark style="color:blue;">**YOUR\_DOMAIN\_URL**</mark>  in your browser.

After that, begin the Step 4.1.
