> 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/angular-admin-setup.md).

# Angular Admin Setup

Before you get started with the initial setup of Angular admin and running your application, make sure you have your [Prerequisites ](/getting-started/prerequisites.md)are in place.&#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
```

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

```
export const environment = { 
production: false, 
baseUrl: '<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/' 
productUrl: '<Your store base url>', // eg: 'http://yourip.com/' 
relatedproductUrl : '<Your store base url>', // eg: 'http://yourip.com/' 
blogUrl : '<Your store base url>', // eg: 'http://yourip.com/' 
pluginUrl: '<Your API url>' // eg: 'http://yourip.com/'
};
```

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

To run application in your respective browser, run the following command:

```
npm run large-serve
```

To build and deploy your Application refer to [Front End Angular Admin Setup.](/front-end-angular-admin-setup.md)&#x20;
