Sorry if this was answered anywhere else, but I am a unsure I understand how Achilles is configured to work with Atlas (cV 2.2.0). For older versions you seem to define that relationship in config.js as outlined at http://www.ohdsi.org/web/wiki/doku.php?id=documentation:software:atlas:archive:atlas_setup_v1_x:
define([], function () {
var config = {};
config.services = [{
name: '<YOUR ENVIRONMENT NAME>',
url: 'http://your_webserver/WebAPI/'
}];
config.webAPIRoot = config.services[0].url;
config.dataSourcesLocation = '/achilles/data/datasources.json';
config.dataSourcesRoot = '/achilles/data';
return config;
});
But for newer versions this seems no longer be the case as you mention at http://www.ohdsi.org/web/wiki/doku.php?id=documentation:software:atlas:setup, as your config-local.js example for the integration does not even mention the location of Achilles anymore. I am just trying to understand what is happening here. Thanks!
define([], function () {
var configLocal = {};
configLocal.api = {
name: 'My Organization Name',
url: 'https://webapi.server.com/WebAPI/'
};
return configLocal;
});