> For the complete documentation index, see [llms.txt](https://maas-code.gitbook.io/swage/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://maas-code.gitbook.io/swage/master.md).

# Install Ionic and run app

## Extract Zip and move to user\_app

For delivery boy app check :- <https://maas-code.gitbook.io/swage-delivery-boy/>

For User App :-&#x20;

```bash
$ cd user_app
```

```
$ npm install -g ionic
```

After that extract zip

If you want to run app on browser run 'ionic serve' inside extracted directory

```bash
// move to project directory
cd swage
//run npm install to get all dependencies
npm install
// run ionic serve
ionic serve
```

It will auto run app in browser or you can open directly : <http://localhost:8100>

If you want to run app on real device run

```bash
// move to project directory
cd swage
//run npm install to get all dependencies
npm install
// run ionic cordova run android
ionic cordova run android/ios
```
