> ## Documentation Index
> Fetch the complete documentation index at: https://docs.appz.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# appz dev

> Learn how to mimic the Appz deployment environment locally and test your Appz Project before deploying using the `appz dev` CLI command.

export const GlobalOptionsComponent = ({command}) => <div>
    <h2><a href="#global-options">Global Options</a></h2>
    <p>These general options can be applied when using the <code>{command}</code> command:</p>
    <ul>
    <li><code>--cwd</code></li>
    <li><code>--debug</code></li>
    <li><code>--global-config</code></li>
    <li><code>--help</code></li>
    <li><code>--local-config</code></li>
    <li><code>--no-color</code></li>
    <li><code>--scope</code></li>
    <li><code>--token</code></li>
    </ul>

    <p>For detailed information on these global options and their applications, refer to the <a href="/cli/global-options">options section</a>.</p>
    </div>;

The `appz dev` command enables you to simulate the Appz deployment setting right in your local environment.

Should the Development Command be set in your Project Settings, it will influence the behavior of `appz dev` for everyone in your team.

## Usage

```bash terminal theme={null}
appz dev
```

> Run the appz dev command from the root directory of an Appz Project.

## Unique Options

These options are specific to the `appz dev` command only.

### Listen

Use the `--listen` option (short form -l) to define which port `appz dev` should operate on.

```bash terminal theme={null}
appz dev --listen 5005
```

> Running the appz dev command with the `--listen` option.

### Yes

The `--yes` option helps bypass prompts when initiating a new Appz Project, automatically using the default scope and current directory for the Appz Project's name and location.

```bash terminal theme={null}
appz dev --yes
```

> Running the appz dev command with the `--yes` option.

<GlobalOptionsComponent command={'appz dev'} />
