> For the complete documentation index, see [llms.txt](https://docs.spurtcommerce.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.spurtcommerce.com/getting-started/development-and-setup/store-front-setup/angular-store-front.md).

# Angular Store Front

### **Initial Setups** &#x20;

Before setting up your Angular Storefront, make sure the [Angular pre-requisites](/getting-started/prerequisites/set-up-development-environment.md#angular-installation) are ready.&#x20;

**Step-1 >** Unzip your file and open it with your desired ide and then go to terminal and type,

```
 npm install
```

If NPM Install doesn't work, then try the command below:

```
npm install --force
```

&#x20; Then, follow the steps given below.

**Step-2 >** Navigate to project folder → src→ environments → environment.ts after that ,

```
export const environment = {
production: false, 
storeUrl: '<Your API Base url>', // eg: 'http:/localhost:8000/backend/api/'
imageUrl:'<Your API url for image resize>', // eg: 'http:/localhost:8000/backend/api/media/image-resize' 
};
```

### Now, **Run your Application**&#x20;

For running your application in your respective browser run the following command:

```
ng serve
```

**Post this, for Build and Deployment, refer to** [Angular Storefront](/frontend-deployment-setup/store-front-setup.md) under Front End Deployment Setup.&#x20;

####
