Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 510 Bytes

README.md

File metadata and controls

33 lines (26 loc) · 510 Bytes

Gen Schema

Generate JSON Schema definitions from a PostgreSQL database

Configuration

.genschemarc.js

module.exports = {
  baseUrl: 'https://genschema.com',
  schemaVersion: 'http://json-schema.org/draft-07/schema#',
  db: {
    database: 'db',
    user: 'system'
  },
  schemas: [
    {
      name: 'public',
      renames: {},
      ignores: ['ignore', 'these', 'tables']
    }
  ]
};

Usage

import { getSchemas } from '@shotero/gen-schema';

console.dir(await getSchemas());