Custom Grails Environments?
Posted
by tinny
on Stack Overflow
See other posts from Stack Overflow
or by tinny
Published on 2010-05-18T22:18:04Z
Indexed on
2010/05/18
22:20 UTC
Read the original article
Hit count: 349
I have been developing several Grails applications over the past couple of years. I am increasingly finding that the three grails environments (dev, test, prod) aren't enough to satisfy my needs. The more "enterprisey" your application gets, the more environments you tend to have.
I tend to use 6 environments for my development cycle...
DEVA //My dev
DEVB //Team mates dev
CI_TEST //CI like Hudson
QA_TEST //Testing team environment
UAT_TEST //Customers testing environment
PROD //Production
Im wondering if there is a way to define custom Grails environments? I dont think there is, but the feature could be handy.
The way I am getting around this right now is by externalising the config to a properties file.
Id imagine that this is a pretty common requirement, so how have you been dealing with your environments?
© Stack Overflow or respective owner