socialtree/src/index.js
Nikurasu 6b9fbc0316 Add preview cards (#2)
Added preview cards for Twitter, Mastodon, Discord, etc.

Co-authored-by: nikurasu <publicmail@nikurasu.gay>
Reviewed-on: #2
2023-05-14 11:39:53 +02:00

49 lines
1.4 KiB
JavaScript

import express from "express";
import yaml from "js-yaml";
import fs from "node:fs";
import * as dotenv from "dotenv";
console.log("🔧 Configuring socialtree...");
dotenv.config();
const app = express();
const port = process.env.PORT || 3000;
const engine = "ejs";
const customMainPartialThemes = [
// Array of themes that require a custom main partial
"98",
];
app.set("view engine", engine);
app.set("views", "./src/views");
app.use(express.static("src/dist"));
app.use(express.static("assets"));
app.get("/", (req, res) => {
let config = yaml.load(fs.readFileSync("assets/config/config.yml"), "utf8");
res.render("index", {
name: config.name,
url: config.url,
filenameProfilePic: config.profilePic
? config.profilePic
: "profilepic.jpg",
summaryText: config.summaryText ? config.summaryText : "",
links: config.links,
smallLinks: config.smallLinks,
theme: config.theme,
roundPB: config.roundPB,
customMainPartialThemes: customMainPartialThemes,
metaDescription: config.summaryText
? config.summaryText
: config.links.map((link) => link.text).join(" | "),
siteName: config.siteName ? config.siteName : "SocialTree",
});
});
app.listen(port, () =>
console.log(
`🚀 Socialtree started on port ${port}, with view engine ${engine}`
)
);