# HttpEdgeConfig

`interface` in `http` · v0.3.1

<https://docs.seedcord.org/packages/http/0.3.1/interfaces/http-edge-config>

Config for a bundled isolate deployment. `seedcord build` generates a worker entry that calls `createSeedcord`.

```ts
interface HttpEdgeConfig extends Config
```

## Properties

### bot

```ts
bot: BotConfig;
```

### botColor

```ts
botColor: BotColor;
```

Accent and embed color applied to every `BuilderComponent` (embeds, containers).

Omit for Discord's default color.

### errors

```ts
errors: ErrorsConfig;
```

Settings for how the framework renders errors and reports faults.

### logger

```ts
logger: LoggerConfig;
```

Logging level, sinks, and per-channel overrides. Omitted fields keep the transport's defaults.

### notifications

```ts
notifications: NotificationsConfig;
```

Settings for framework-sent error notifications.

### ownerIds

```ts
ownerIds: string[]
```

User ids the `OwnerOnly` gate treats as bot owners.

### port

```ts
port: never;
```

### runtime

```ts
runtime: "edge";
```

### store

```ts
store: Store<"charge">;
```

The in-memory default resets on restart and is per-isolate on serverless. Pass a durable store to keep framework state across restarts and isolates.

### subscribers

```ts
subscribers: SubscribersConfig;
```
