grunt-db
v0.1.0
Published
Manage databases with Grunt
Downloads
12
Maintainers
Readme
Manage databases with grunt!
Installation
npm i -D grunt-dbUsage
// gruntfile
grunt.initConfig({
db: {
options: {
user: 'username',
password: 'password',
dialect: 'mysql',
},
create: 'example',
drop: 'example'
},
})
Options
The options object can specify anything that manage-database understands: user, database (template for postgres), password, port, host and dialect.
