mirror of
https://github.com/jakejarvis/stanza.git
synced 2026-07-16 19:16:00 -04:00
26 lines
640 B
TypeScript
26 lines
640 B
TypeScript
import { defineModule } from "@withstanza/schema";
|
|
|
|
export default defineModule({
|
|
id: "postgres",
|
|
category: "db",
|
|
label: "PostgreSQL",
|
|
description: "Postgres via the `postgres` driver. Works locally or via Neon/Supabase.",
|
|
version: "0.1.0",
|
|
homepage: "https://www.postgresql.org",
|
|
adapters: [
|
|
{
|
|
key: "default",
|
|
match: {},
|
|
dependencies: { postgres: "^3.4.9" },
|
|
env: [
|
|
{
|
|
name: "DATABASE_URL",
|
|
example: "postgres://postgres:postgres@localhost:5432/stanza",
|
|
required: true,
|
|
description: "Postgres connection string.",
|
|
},
|
|
],
|
|
},
|
|
],
|
|
});
|