User Tools

Site Tools


documentation:software:atlas:setup

This is an old revision of the document!


ATLAS Setup

The following sections detail the process for setting up Atlas and its dependencies.

Prerequisites

WebAPI

The first prerequisite for ATLAS is to Install the OHDSI WebAPI and configure the appropriate sources.

ACHILLES

To use the Data Sources feature within ATLAS you must first setup and execute ACHILLES in your environment. Once you have successfully generated summary statistics, you are ready to configure ATLAS to use this information.

ATLAS Installation (V2.2.0 and later)

Begin by downloading the latest release of ATLAS from GitHub.

Install the release onto a web server such that the application will be reachable via a URL such as:

http://<your_webserver>/atlas

Under the Atlas root folder, create the file /js/config-local.js to configure the application. Please note: the file /js/config-local.js is not included in the repository so that you may have environment-specific configuration. Config-local.js will override the settings found in /js/config.js as shown here:

define([], function () {
	var configLocal = {};
 
	configLocal.api = {
		name: 'My Organization Name',
		url: 'https://webapi.server.com/WebAPI/'
	};
 
	return configLocal;
});

In the example above, the /js/config-local.js overrides the corresponding “.api” property found in /js/config.js and allows for custom configuration for your environment. The same pattern can be used to override the other settings in /js/config.js.

Once this is complete, you should now be able to navigate to ATLAS from your web browser.

http://<your_webserver>/atlas

ATLAS Installation Archive

documentation/software/atlas/setup.1508257979.txt.gz · Last modified: 2017/10/17 16:32 by anthonysena