## deploy()


Deploy the project to the specified environment.


Usage


``` python
deploy(
    environment,
    dry_run=False,
)
```


## Parameters


`environment: str`  
The target environment (e.g., "staging", "production").

`dry_run: bool = ``False`  
If True, simulate the deployment without making changes, by default False.


## Returns


`str`  
A message indicating the deployment result.


## Examples

``` python
>>> deploy("staging", dry_run=True)
```

'Dry run: would deploy to staging'
