0.1.0 • Published 8 years ago

grunt-db v0.1.0

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

Manage databases with grunt!

Installation

npm i -D grunt-db

Usage

// 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.