Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kbarbounakis/most-data-mysql
Most Web Framework MySQL Adapter
https://github.com/kbarbounakis/most-data-mysql
Last synced: 1 day ago
JSON representation
Most Web Framework MySQL Adapter
- Host: GitHub
- URL: https://github.com/kbarbounakis/most-data-mysql
- Owner: kbarbounakis
- License: other
- Created: 2015-08-24T10:20:03.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-27T05:56:47.000Z (over 7 years ago)
- Last Synced: 2024-10-13T11:21:56.961Z (about 1 month ago)
- Language: JavaScript
- Size: 18.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# most-data-mysql
Most Web Framework MySQL Adapter
##Install
$ npm install most-data-mysql
##Usage
Register MySQL adapter on app.json as follows:"adapterTypes": [
...
{ "name":"MySQL Data Adapter", "invariantName": "mysql", "type":"most-data-mysql" }
...
],
adapters: [
...
{ "name":"development", "invariantName":"mysql", "default":true,
"options": {
"host":"localhost",
"port":3306,
"user":"user",
"password":"password",
"database":"test"
}
}
...
]If you are intended to use MySQL data adapter as the default database adapter set the property "default" to true.