Skip to content

Commit

Permalink
Fix formatting in guide
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarred-Sumner committed May 24, 2024
1 parent d3fdb17 commit 230c760
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions docs/guides/ecosystem/render.md
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand All @@ -48,6 +49,7 @@ app.listen(port, () => {
```

---

Commit your changes and push to GitHub.

```bash
Expand All @@ -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` |

---

Expand Down

0 comments on commit 230c760

Please sign in to comment.