Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
# App Hosting adapters
interface RunConfig {
runCommand: string;
environmentVariables?: EnvVarConfig[];
concurrency?: number;
cpu?: number;
memoryMiB?: number;
minInstances?: number;
maxInstances?: number;
}# App Hosting adapters
Comment on lines +1 to +9

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

This added block appears to be a mistake. It duplicates the RunConfig interface definition, which is already documented further down in this file under the ### RunConfig section. Additionally, the content is not wrapped in a markdown code block and the closing brace is on the same line as the main document title, which will cause formatting issues. This block should be removed to avoid duplication and fix the document's rendering.

Suggested change
interface RunConfig {
runCommand: string;
environmentVariables?: EnvVarConfig[];
concurrency?: number;
cpu?: number;
memoryMiB?: number;
minInstances?: number;
maxInstances?: number;
}# App Hosting adapters
# App Hosting adapters


## Overview

Expand Down