# Deploying Flappy Dodo to Modal

## Deploy Command

From the `studio_api/streaming_api` directory, run:

```bash
uv run modal deploy streaming_api/flappy-dodo.py
```

This will:
1. Build the container image with dependencies
2. Deploy the app to Modal
3. Give you the URL: `https://suno-ai--flappy-dodo-audio-upload-api.modal.run`

## After Deployment

Test the endpoints:

```bash
# Health check
curl https://suno-ai--flappy-dodo-audio-upload-api.modal.run/

# Upload and generate cover
./test_flappy_dodo.sh ./test.wav
```

## Check Deployment Status

```bash
modal app list
```

Look for `flappy-dodo-audio-upload` in the list.

