Initial commit

This commit is contained in:
CallMeVerity
2026-06-03 00:44:48 +01:00
commit eb56ad5183
36 changed files with 3419 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
import { Elysia, status } from "elysia";
import { cors } from "@elysiajs/cors";
import { videoRoutes } from "./routes/videos";
import { initDb } from "./services/db";
import { join } from "path";
import { existsSync } from "fs";
initDb();
const PORT = parseInt(process.env.PORT || "3001");
const STATIC_DIR = process.env.STATIC_DIR || "./public";
const app = new Elysia()
.use(cors())
.onError(({ error }) => {
console.error("Unhandled error:", error);
return status(500, { error: "Internal server error" });
})
.use(videoRoutes)
.get("/api/health", () => ({ status: "ok" }))
.get("*", ({ request }) => {
const url = new URL(request.url);
const pathname = url.pathname;
if (pathname.startsWith("/api")) return status(404, "Not found");
const filePath = join(STATIC_DIR, pathname);
if (existsSync(filePath)) return Bun.file(filePath);
const indexPath = join(STATIC_DIR, "index.html");
if (existsSync(indexPath)) return Bun.file(indexPath);
return status(404, "Not found");
})
.listen(PORT);
console.log(`surf.nathan.rip running on port ${PORT}`);
console.log(`Serving static files from ${STATIC_DIR}`);