initial commit

This commit is contained in:
Robert Perce 2025-05-15 07:42:32 -05:00
commit 803205ee7f
59 changed files with 3437 additions and 0 deletions

14
astro.config.mjs Normal file
View file

@ -0,0 +1,14 @@
// @ts-check
import { defineConfig } from "astro/config";
import init from "./src/lib/db_init";
import node from "@astrojs/node";
// https://astro.build/config
export default defineConfig({
integrations: [init],
adapter: node({
mode: "standalone",
}),
});