Changeset 1363
- Timestamp:
- Jan 11, 2011, 4:08:33 PM (12 years ago)
- Location:
- trunk/grails-app/conf
- Files:
-
- 1 edited
- 7 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/conf/Config.groovy
r1362 r1363 17 17 // config files can either be Java properties files or ConfigSlurper scripts 18 18 grails.config.locations = [ 19 // the WAR and run-app default location 20 "classpath:${grails.util.GrailsUtil.environment}-config.properties", 21 22 // the external configuration 23 "file:${userHome}/.grails-config/${appName}-${grails.util.GrailsUtil.environment}-config.properties" 19 // the default per-environment configuration 20 // (e.g. grails-app/conf/config-development.properties) 21 "classpath:config-${grails.util.GrailsUtil.environment}.properties", 22 23 // the external configuration to override the default 24 // configuration (e.g. ~/.grails-config/ci-gscf.properties) 25 "file:${userHome}/.grails-config/${grails.util.GrailsUtil.environment}-${appName}.properties" 24 26 ] 25 27
Note: See TracChangeset
for help on using the changeset viewer.