Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kbarbounakis/most-data-pg

MOST Web Framework PostgreSQL Adapter
https://github.com/kbarbounakis/most-data-pg

Last synced: 1 day ago
JSON representation

MOST Web Framework PostgreSQL Adapter

Awesome Lists containing this project

README

        

most-data-pg
===========

Most Web Framework PostgreSQL Adapter

##Install

$ npm install most-data-pg

##Usage

Register PostgreSQL adapter on app.json as follows:

adapters: {
"postgres": { "name":"local-db", "invariantName":"postgres", "default":true,
"options": {
"host":"localhost",
"post":5432,
"user":"user",
"password":"password",
"database":"db"
}
}
}

If you are intended to use PostgreSQL adapter as the default database adapter set the property "default" to true.