Changeset 1178 for trunk/grails-app/conf/Config.groovy
- Timestamp:
- Nov 19, 2010, 1:19:00 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/conf/Config.groovy
r1171 r1178 51 51 development { 52 52 grails.serverURL = "http://localhost:8080/${appName}" 53 54 CommunicationManager.SAMServerURL = 'http://localhost:8182/sam' 55 CommunicationManager.registerRestWrapperMethodsGSCFtoSAM() 53 modules { 54 sam { 55 url = "http://localhost:8182/sam" 56 } 57 metabolomics { 58 url = "http://localhost:8183/nmcdsp" 59 } 60 } 56 61 } 57 62 ci { 58 63 // used by build script 59 64 grails.serverURL = "http://ci.gscf.nmcdsp.org" 60 61 CommunicationManager.SAMServerURL = 'http://ci.sam.nmcdsp.org' 62 CommunicationManager.registerRestWrapperMethodsGSCFtoSAM() 65 modules { 66 sam { 67 url = "http://ci.sam.nmcdsp.org" 68 } 69 metabolomics { 70 url = "http://ci.metabolomics.nmcdsp.org" 71 } 72 } 63 73 } 64 74 test { 65 75 // used by build script 66 76 grails.serverURL = "http://test.gscf.nmcdsp.org" 67 68 CommunicationManager.SAMServerURL = 'http://test.sam.nmcdsp.org' 69 CommunicationManager.registerRestWrapperMethodsGSCFtoSAM() 77 modules { 78 sam { 79 url = "http://test.sam.nmcdsp.org" 80 } 81 metabolomics { 82 url = "http://test.metabolomics.nmcdsp.org" 83 } 84 } 70 85 } 71 86 dbnptest { 72 87 // used by build script 73 88 grails.serverURL = "http://test.dbnp.org" 74 75 CommunicationManager.SAMServerURL = 'http://test.sam.dbnp.org' 76 CommunicationManager.registerRestWrapperMethodsGSCFtoSAM() 89 modules { 90 sam { 91 url = "http://test.sam.dbnp.org" 92 } 93 metabolomics { 94 url = "http://test.metabolomics.dbnp.org" 95 } 96 } 77 97 } 78 98 dbnpdemo { 79 99 // used by build script 80 100 grails.serverURL = "http://demo.dbnp.org" 81 82 CommunicationManager.SAMServerURL = 'http://demo.sam.dbnp.org' 83 CommunicationManager.registerRestWrapperMethodsGSCFtoSAM() 101 modules { 102 sam { 103 url = "http://demo.sam.dbnp.org" 104 } 105 metabolomics { 106 url = "http://demo.metabolomics.dbnp.org" 107 } 108 } 84 109 } 85 110 production { 86 111 grails.serverURL = "http://www.nmcdsp.org" 87 88 CommunicationManager.SAMServerURL = 'http://sam.nmcdsp.org' 89 CommunicationManager.registerRestWrapperMethodsGSCFtoSAM() 112 modules { 113 sam { 114 url = "http://sam.nmcdsp.org" 115 } 116 metabolomics { 117 url = "http://metabolomics.nmcdsp.org" 118 } 119 } 90 120 } 91 121 www { 92 122 // used by build script 93 123 grails.serverURL = "http://www.nmcdsp.org" 94 95 CommunicationManager.SAMServerURL = 'http://sam.nmcdsp.org' 96 CommunicationManager.registerRestWrapperMethodsGSCFtoSAM() 124 modules { 125 sam { 126 url = "http://sam.nmcdsp.org" 127 } 128 metabolomics { 129 url = "http://metabolomics.nmcdsp.org" 130 } 131 } 97 132 } 98 133 }
Note: See TracChangeset
for help on using the changeset viewer.