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

# Use create-redop-app Flags and Presets

> Choose the right transport and deploy presets when you generate a Redop starter app.

`create-redop-app` is small on purpose. It gives you one starter shape with a few decisions up front.

## Useful flags

```sh theme={null}
bunx create-redop-app my-redop-app --transport http --deploy railway
```

## Transport choices

* `http` for hosted services
* `stdio` for local MCP command integrations

## Deploy presets

* `none` for manual Bun setup
* `railway` for hosted Bun services
* `fly-io` for Docker-based deployment on Fly.io
* `unkey` for Docker-based Unkey Deploy (previews, rollbacks, Sentinel)
* `vercel` for Vercel via `@redopjs/redop/vercel`
* `cloudflare` for Cloudflare Workers via `@redopjs/redop/cloudflare`

## Generated files by preset

| Preset       | Extra files / entry                                                   |
| ------------ | --------------------------------------------------------------------- |
| `none`       | `src/index.ts` with `.listen()`                                       |
| `railway`    | `src/index.ts` with `.listen()`                                       |
| `fly-io`     | `Dockerfile`, `fly.toml`                                              |
| `unkey`      | production `Dockerfile` (compiled Bun binary), README deploy commands |
| `vercel`     | `api/index.ts` adapter entry, `vercel.json`                           |
| `cloudflare` | `src/index.ts` adapter entry, `wrangler.jsonc`                        |

## Good default

If you are unsure, start with `--transport http --deploy railway` for hosted Bun work or `--transport stdio` for local client integrations. Use `unkey` when you want Docker deploys with preview environments. Use `vercel` / `cloudflare` when you specifically want those platforms and can stick to stateless MCP.

## Deployment guides

* [Deploy to Production](/docs/guides/deploy/index)
* [Deploy to Railway](/docs/guides/deploy/railway)
* [Deploy to Fly.io](/docs/guides/deploy/fly-io)
* [Deploy with Docker](/docs/guides/deploy/docker)
* [Deploy on Node.js](/docs/guides/deploy/node)
* [Deploy to Unkey](/docs/guides/deploy/unkey)
* [Deploy to Cloudflare Workers](/docs/guides/deploy/cloudflare)
* [Deploy to Vercel](/docs/guides/deploy/vercel)
* [Runtime adapters](/docs/reference/runtime-adapters)
