@mzinga/db-postgres
v0.1.3
Published
The officially supported Postgres database adapter for MZinga
Readme
MZinga Postgres Adapter
Official Postgres adapter for MZinga.
Installation
npm install @mzinga/db-postgresUsage
import { buildConfig } from 'mzinga/config'
import { postgresAdapter } from '@mzinga/db-postgres'
export default buildConfig({
db: postgresAdapter({
pool: {
connectionString: process.env.DATABASE_URI,
},
}),
// ...rest of config
})More detailed usage can be found in the MZinga Docs.
