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

# Manage a project

> Inspect, change, connect to, stop, or delete a shipped project.

## Use the FixCodeNow app

Open [app.fixcodenow.com](https://app.fixcodenow.com) and select **Projects**. A project page shows its status, health, services, public URL, current release, recent activity, and architecture.

Click **Change project** to continue in Chat. The project actions also let you:

* Add a service.
* Change configuration.
* View logs.
* Manage environment variables through a secure form.
* Stop the project while preserving stored data.
* Permanently delete the project and its data.

Project changes may require your approval before FixCodeNow applies them.

## Connect to a private service

Use the deployment ID and service name shown by `fixcodenow list`:

```bash theme={null}
fixcodenow connect <deployment-id>/<service>
```

The command opens an available local TCP port and keeps the connection active until you stop it. Choose a specific local port with `--local-port`.

## Stop a project

```bash theme={null}
fixcodenow unship <deployment-id-or-url-or-name>
```

This stops the project but preserves persistent data. The CLI asks for confirmation.

To permanently delete the project and its persistent data:

```bash theme={null}
fixcodenow unship --purge-data <deployment-id-or-url-or-name>
```

Purging data cannot be undone.
