# Setup Project

### STEP 1 - Pick the Skeleton (Starter Template)

In this step, you can pick any of the given skeleton templates (as mentioned in Product Overview section) and copy & paste that to the location where you want to setup your project.

Once, the skeleton folder is copied over, you can rename the folder and can give it to the name of your project.

### STEP 2 - Install All Dependencies

To install dependencies open your terminal (command prompt in Windows) and locate your project using the CD command.

Now, run the following command to install all the dependencies Drift Angular has in its package.json:

```
$ npm install
```

### STEP 3 - Run Your Project

To run your project, run the following command:&#x20;

```
$ ng serve --open
```

or

```
$ npm run start
```

### STEP 4 - Prepare Build of Your Project

The build files will be stored in **/dist** directory.&#x20;

To prepare a build of your project, you would need to run the following command in your terminal:

```
$ ng build --prod
```

There is an alternative one that you can use. The following command will run the **ng build --prod** command with an increased memory size so your app can be built:

```
$ npm run build
```

&#x20;For more information about angular-cli commands, check the [angular-cli](https://github.com/angular/angular-cli).
