A gruntplugin for klei-migrate
npm install grunt-klei-migrate> A gruntplugin for klei-migrate
~0.4.1If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
``shell`
npm install grunt-klei-migrate --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
`js`
grunt.loadNpmTasks('grunt-klei-migrate');
to the data object passed into grunt.initConfig().`js
grunt.initConfig({
klei_migrate: {
options: {
// Task-specific options go here.
},
your_target: {
// Target-specific options go here.
},
},
})
`$3
#### options.command
Type:
String
Default value: run or target name (if valid command name)The
klei-migrate command to run, valid commands are: run, dry and create (see klei-migrate for more information)#### options.env
Type:
String
Default value: process.env.NODE_ENV or developmentSets the current environment name.
Can also be provided with
--env parameter on execution.#### options.down
Type:
Boolean
Default value: falseSpecifies that the migration direction should be
down.
Can also be provided with --down parameter on execution.#### options.up
Type:
Boolean
Default value: trueSpecifies that the migration direction should be
up.
Can also be provided with --up parameter on execution.#### options.template
Type:
String
Default value: NULLIf provided sets the template path for the template to use when creating new migrations.
Can also be provided with
--template parameter on execution.#### options.limit
Type:
Number
Default value: 0Limit the number of migrations to run.
Can also be provided with
--limit parameter on execution.#### options.timeout
Type:
Number
Default value: 30Limit max execution time, for each migration, in seconds.
Can also be provided with
--timeout parameter on execution.#### options.fromBranch
Type:
String
Default value: NULLSets fromBranch argument for the
sync command.
Can also be provided with --fromBranch parameter on execution.
Only used if no argument is provided.#### options.fromRef
Type:
String
Default value: NULLSets fromRef argument for the
post_checkout command.
Can also be provided with --fromRef parameter on execution.
Only used if no argument is provided.#### options.toRef
Type:
String
Default value: NULLSets toRef argument for the
post_checkout command.
Can also be provided with --toRef parameter on execution.
Only used if no argument is provided.$3
#### Simple configuration
With the following task configuration you can use the klei-migrate commands:
run, dry and create.`js
grunt.initConfig({
klei_migrate: {
run: "",
create: "",
dry: ""
},
})
`To run all migrations:
`bash
$ grunt klei_migrate:runor
$ grunt klei_migrate:run --down # to migrate down
`To create a new migration:
`bash
$ grunt klei_migrate:createor
$ grunt klei_migrate:create:"My new migration" # to name the migration "My new migration"
`To show what can be migrated:
`bash
$ grunt klei_migrate:dryor
$ grunt klei_migrate:dry --down # to show what can be migrated down
`#### Another example configuration
This configuration:
`js
grunt.initConfig({
klei_migrate: {
run: "",
create: {
options: {
template: '/'
}
},
dry: "",
next: {
options: {
command: 'run',
limit: 1
}
},
revert: {
options: {
command: 'run',
limit: 1,
down: true
}
}
},
})
`Gives you two handy commands
next and revert which migrates the next migration and reverts the previously run migration, respectively. Usage:`bash
$ grunt klei_migrate:nextand
$ grunt klei_migrate:revert
``