A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/OHDSI/Atlas/wiki/Atlas-Setup-Guide below:

Atlas Setup Guide · OHDSI/Atlas Wiki · GitHub

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

The first prerequisite for ATLAS is to Install the OHDSI WebAPI. Installation and configuration information is available on the WebAPI wiki. The ATLAS setup assumes WebAPI is available and configured with one or more patient data sets converted to the OMOP Common Data Model.

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.

The following sections will detail how to download and ready the ATLAS code base and to configure it for your environment.

Download the latest release of ATLAS and extract it.

Then copy all of the files from the extracted folder to your web server including the node_modules folder (this is required to resolve all JavaScript dependencies). Set up your webserver such that the application will be reachable via a URL such as:

  http://<your_webserver>/atlas

The default configuration for ATLAS is found in the /js/config/app.js file. To override these application settings, create a new file in /js/config-local.js (example below). Please note: the file /js/config-local.js is not included in the Atlas repository. This is by design so that you may have environment-specific configuration.

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/app.js and allows for custom configuration for your environment. The same pattern can be used to override the other settings in /js/config/app.js.

Once this is complete, you should now be able to navigate to ATLAS from Google Chrome.

  http://<your_webserver>/atlas
(Optional) Shutting off the ability of users to grant READ/WRITE permissions to other users for their artifacts

As of 2.14, there is an optional enhancement that allows read permission to be restricted so that only users with read access to a given artifact can view them. More information can be found on the WebAPI Wiki. There is no configuration change required in Atlas for this feature to work if an organization has enabled it in the WebAPI.

If you are having trouble loading ATLAS, we recommend the following troubleshooting steps:

If you are developing Atlas and are starting from a fresh clone, you will need node.js installed so you can run the following from inside of the project's base folder:

npm run build

This creates a number of node-containing folders needed for the web app to run.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4