
## EXAMPLE CONFIG

In this example, the command "bb-serve project" will load the port and plugins options. But the command
"bb-serve foo" would only load the "port" option. Both commands would load the "portal-host" and "portal-port"
properties.

```json
{
  "default": {
    "portal-host": "my.portal.com",
    "portal-port": 80
  },
  "dev": {
    "portal-host": "192.168.99.100",
    "portal-port": 8080,
    "serve": {
      "port": 80,
      "project": {
        "plugins": "sass"
      }
     }
  }
}
```

## NAMED PROFILES

The BB CLI supports named profiles stored in the config file. You can configure additional
profiles by adding entries to the config file. By default all config values will be take
from the 'default' profile.

To use a named profile set the BB_PROFILE environment variable at the command line.

## EXAMPLES

List current configuration for default profile:

```bash
  $ bb-config list
```

List configuration for dev profile:

```bash
  $ BB_PROFILE=dev bb-config list
```