# Run Profiles Project

This guide lists the commands required to run your Profiles project successfully.

## Compile

Once you have created the Profiles project, make sure to compile it to verify that there are no compilation errors.

Run the following command:

```bash
pb compile
```

This generates SQL files in the `output/` folder that you can run directly on the warehouse. In case of any compilation errors, you will see them on your screen and also in the `logs/logfile.log` file.

## Run

Once the compilation is successful and there are no errors, run your Profiles project:

```bash
pb run
```

This command generates and runs the SQL files in the warehouse, creating the material tables.

<br />

