> For the complete documentation index, see [llms.txt](https://blitslabs.gitbook.io/filecoin-loans/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://blitslabs.gitbook.io/filecoin-loans/develop/quickstart-guide/running-the-app.md).

# Running the app

Actions described here are executed in the web/app\_src module.

## Setting up the environment variables

Create a .env file with the schema of the .env.example file.

```bash
SKIP_PREFLIGHT_CHECK=true
PORT="app_port"
REACT_APP_SERVER_HOST="http://app_host:app_port"
REACT_APP_FIL_ENDPOINT="lotus rpc url"
REACT_APP_FIL_TOKEN="lotus rpc token"
REACT_APP_API_HOST="http://api_host:api_port/api/"
REACT_APP_API_PRICES="wallet api url"
```

{% hint style="danger" %}
Do not add this file to the control version system
{% endhint %}

## Installing dependencies

```bash
$ npm install
```

## **Starting the app**

```bash
$ npm run start
```

{% hint style="success" %}
A server should be started at the defined port.
{% endhint %}

##
