aboutsummaryrefslogtreecommitdiff
path: root/src/main.ts
blob: bcdb63267a83a8b286de3d6a8d1123c078fc751c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import { Application, Context } from "https://deno.land/x/abc@v1/mod.ts";
import "https://deno.land/x/dotenv/load.ts";

const port = parseInt(Deno.env.get("PORT") || "8080");
const app = new Application();

app.static("/", "./src/public/"); // Manage static files
app.file("/", "./src/public/index.html"); // Render index on /

app.start({ port });
console.log(`Server listening on http://localhost:${port}`);