2024-06-09 07:22:05 +00:00
|
|
|
import express from "express";
|
|
|
|
import nunjucks from "nunjucks";
|
|
|
|
import app from "src/app";
|
|
|
|
|
|
|
|
const site = express();
|
|
|
|
|
2024-07-03 07:47:47 +00:00
|
|
|
nunjucks.configure("templates", {
|
2024-06-09 07:22:05 +00:00
|
|
|
autoescape: true,
|
|
|
|
express: site,
|
|
|
|
});
|
|
|
|
|
|
|
|
site.use(express.static("."));
|
|
|
|
|
|
|
|
site.get("/", app.index);
|
|
|
|
|
|
|
|
site.listen(8080, () => console.log("app listening on 8080"));
|