ta-app-config
Advanced tools
Comparing version 1.2.1 to 1.3.0
{ | ||
"name": "ta-app-config", | ||
"version": "1.2.1", | ||
"version": "1.3.0", | ||
"description": "TA platform utils for node.js and the browser", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -67,2 +67,12 @@ /* eslint-disable no-var, object-shorthand */ | ||
config.countAppula = { | ||
name: 'CountAppula', | ||
locations: { | ||
development: createLocation('http:', 'countappula', 3030), | ||
production: createLocation('http:', 'countappula'), | ||
staging: createLocation('http:', 'staging-countappula'), | ||
}, | ||
} | ||
config.countAppula.location = config.countAppula.locations[env] | ||
module.exports = config |
4170
71