~~NOTOC~~ ===== IMPORTANT NOTE ===== All ATLAS documentation has moved to [[https://github.com/OHDSI/ATLAS/wiki|GitHub]]. Please disregard the content below as it is legacy and kept for posterity. ===== ATLAS Setup (LEGACY) ===== The following sections detail the process for setting up Atlas and its dependencies. ==== Prerequisites ==== === WebAPI === The first prerequisite for ATLAS is to [[documentation:software:webapi:webapi_installation_guide|Install the OHDSI WebAPI]] and [[documentation:software:webapi:source_configuration|configure the appropriate sources]]. === ACHILLES === To use the [[documentation:software:atlas:data-sources|Data Sources]] feature within ATLAS you must first [[documentation:software:achilles|setup and execute ACHILLES]] in your environment. Once you have successfully generated summary statistics, you are ready to configure ATLAS to use this information. **Please note**: If you utilized Achilles prior to v1.4, please refer to the article [[documentation:software:atlas:achilles_v_1_5|Achilles v1.5.0 Dependencies For WebAPI/Atlas]] as Atlas/WebAPI v2.2.0 will require some additions to the Achilles output. ==== ATLAS Installation (V2.2.0 and later) ==== Begin by downloading the latest release of [[https://github.com/OHDSI/Atlas/releases/latest|ATLAS from GitHub]]. Install the release onto a web server such that the application will be reachable via a URL such as: http:///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 Atlas repository. This is by design 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:///atlas ==== ATLAS Installation Archive ==== [[documentation:software:atlas:archive:atlas_setup_v1_x|ARCHIVE: ATLAS Setup (v2.1 or earlier)]]