Initial MVP: DocFast PDF API
- HTML/Markdown to PDF conversion via Puppeteer - Invoice and receipt templates - API key auth + rate limiting - Dockerfile for deployment
This commit is contained in:
commit
feee0317ae
14 changed files with 4529 additions and 0 deletions
7
src/routes/health.ts
Normal file
7
src/routes/health.ts
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
import { Router } from "express";
|
||||
|
||||
export const healthRouter = Router();
|
||||
|
||||
healthRouter.get("/", (_req, res) => {
|
||||
res.json({ status: "ok", version: "0.1.0" });
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue