Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 357 Bytes

README.md

File metadata and controls

10 lines (7 loc) · 357 Bytes

Schema-Armadillo

An application that maps out your Mongoose Schema.

NEED TO CREATE A DATABASE IN YOUR LOCAL SERVER BEFORE RUNNING THE PROGRAM

  1. $ psql postgres
  2. postgres=# CREATE DATABASE armadillo-schema;
  3. postgres=# CREATE ROLE armadillo WITH LOGIN PASSWORD 'pink';
  4. postgres=# grant all privileges on database armadillo-schema to armadillo;