You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
336 B

import init from "./src/index.ts";
const app = await init();
app.addEventListener("listen", ({
hostname,
port,
}) => {
console.log(
`Wackylytics server listening on http://${
hostname ?? "localhost"
}:${port}`,
);
});
await app.listen({
port: Number(Deno.env.get("PORT")) ?? 8080,
});