From 230c760b421146f9ec16e52b973b581f18ec888f Mon Sep 17 00:00:00 2001 From: Jarred Sumner Date: Thu, 23 May 2024 22:25:06 -0700 Subject: [PATCH] Fix formatting in guide --- docs/guides/ecosystem/render.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/docs/guides/ecosystem/render.md b/docs/guides/ecosystem/render.md index 94d2669030d02e..cad2792b122bb0 100644 --- a/docs/guides/ecosystem/render.md +++ b/docs/guides/ecosystem/render.md @@ -30,9 +30,10 @@ bun add express ``` --- + Define a simple server with Express: -```app.ts +```ts#app.ts import express from "express"; const app = express(); @@ -48,6 +49,7 @@ app.listen(port, () => { ``` --- + Commit your changes and push to GitHub. ```bash @@ -64,11 +66,11 @@ In your [Render Dashboard](https://dashboard.render.com/), click `New` > `Web Se In the Render UI, provide the following values during web service creation: -| | | -| ----------- | --------- | -| **Runtime** | `Node` | +| | | +| ----------------- | ------------- | +| **Runtime** | `Node` | | **Build Command** | `bun install` | -| **Start Command** | `bun app.js` | +| **Start Command** | `bun app.js` | ---