adds --remote to build command

This commit is contained in:
2025-12-18 10:58:34 +00:00
parent 781af6414e
commit fcb297637d
5 changed files with 525 additions and 3 deletions

5
website/db/config.ts Normal file
View File

@@ -0,0 +1,5 @@
import { defineDb } from "astro:db";
export default defineDb({
tables: {},
});

3
website/db/seed.ts Normal file
View File

@@ -0,0 +1,3 @@
import { db } from "astro:db";
export default async function seed() {}