We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4328647 commit af41548Copy full SHA for af41548
README.md
@@ -23,13 +23,10 @@ pnpm fmt
23
cd server
24
25
# Install server-side dependencies
26
-bundle
+bun install
27
28
# Start a server, See http://localhost:4567
29
-bundle exec run
30
-
31
-# Start the server in production mode
32
-RACK_ENV=production bundle exec run
+bun dev
33
```
34
35
server/README.md
server/src/index.ts
@@ -1,6 +1,6 @@
1
import { Elysia } from "elysia";
2
3
-const app = new Elysia().get("/", () => "Hello Elysia").listen(3000);
+const app = new Elysia().get("/", () => "Hello Elysia").listen(4567);
4
5
console.log(
6
`🦊 Elysia is running at ${app.server?.hostname}:${app.server?.port}`
0 commit comments