File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 33The manuals will show all the flags and options which are available for the respective tasks.
44If you find yourself in a situation where you always define certain flags in order to
55make the CLI compliant to your project, you can move those definitions also into a file called
6- ` .dynamitrc ` . The file will get ` require ` d if available and can therefore be either a JSON file
7- or a Node.JS script that exports a hash. You can also use the ` --options-path ` option to declare a
8- path to another configuration file.
6+ ` .dynamitrc ` . The file will get ` require ` d if available and can therefore be either a JSON file, YAML
7+ or a Node.JS script that exports a hash.
98
109### Example for a Node.JS script
1110
1211``` js
1312var path = require (' path' )
1413
1514module .exports = {
16- ' migrations-path ' : path . resolve ( ' db' , ' migrate' )
15+ migrationsPath : ' db/ migrate'
1716}
1817```
1918
You can’t perform that action at this time.
0 commit comments