all repos — stealth-developers @ bcf274d3451c1a8d98a6f41022875485cf8040b7

apps/api/src/index.ts (view raw)

 1
 2
 3
 4
 5
 6
import config from "@stealth-developers/config";

import { app } from "./app";

app.listen({ port: config.api.port, hostname: "127.0.0.1" });
console.log(`🦊 Elysia is running at ${app.server?.hostname}:${app.server?.port}`);