Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/kbarbounakis/most-data-pg
- Owner: kbarbounakis
- License: other
- Created: 2014-11-27T05:47:12.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-09-05T09:53:14.000Z (about 8 years ago)
- Last Synced: 2024-10-28T14:24:20.914Z (20 days ago)
- Language: JavaScript
- Size: 28.3 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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.