* tests: fix float problems and PAT problem * extend CONTRIBUTING.md * extend build documentation, add GH action, fix build on MacOS * fix build on Vercel * update .gitignore and CONTRIBUTING.md * feat: begin work on monorepo * chore(actions/basic-build): use pnpm * fix: vercel-deploy * docs: updates with new folders * chore: apply PR review comments --------- Co-authored-by: martin-mfg <2026226+martin-mfg@users.noreply.github.com>
24 lines
656 B
JavaScript
24 lines
656 B
JavaScript
import "dotenv/config";
|
|
import statsCard from "./api/index.js";
|
|
import repoCard from "./api/pin.js";
|
|
import langCard from "./api/top-langs.js";
|
|
import wakatimeCard from "./api/wakatime.js";
|
|
import gistCard from "./api/gist.js";
|
|
import express from "express";
|
|
|
|
const app = express();
|
|
const router = express.Router();
|
|
|
|
router.get("/", statsCard);
|
|
router.get("/pin", repoCard);
|
|
router.get("/top-langs", langCard);
|
|
router.get("/wakatime", wakatimeCard);
|
|
router.get("/gist", gistCard);
|
|
|
|
app.use("/api", router);
|
|
|
|
const port = process.env.PORT || process.env.port || 9000;
|
|
app.listen(port, "0.0.0.0", () => {
|
|
console.log(`Server running on port ${port}`);
|
|
});
|