Last active
September 29, 2015 11:48
-
-
Save atomsfat/1595668 to your computer and use it in GitHub Desktop.
Graiis tips and tricks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #switch config: | |
| grails -Dgrails.env=development switch-config clickonmx | |
| #make war: | |
| grails -Dgrails.env=development war target/cooldeals-lat-0.3.2.war | |
| #running test: | |
| grails test-app class-name -integration | |
| #no interactive console | |
| grails run-app --non-interactive | |
| #plain output | |
| grails run-app --plain-output | |
| #migrate database | |
| grails dbm-update -Dgrails.env=test | |
| #sincronyze | |
| grails dbm-changelog-sync | |
| #diff | |
| grails dbm-gorm-diff --add widget-admin.groovy | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment