Getting Started
From zero to running Study Tracker
Last updated
From zero to running Study Tracker
Last updated
Depending on your needs, Study Tracker can be run with a number of different service integrations. The bare-minimum requirements for running Study Tracker are as follows:
Java JDK 11 or higher
Maven 3
PostgreSQL 12 or higher
If you'd like to get the most out of what Study Tracker can offer, you should run it on AWS and integrate with the following additional services:
ElasticSearch 7.10 (for enabling power search)
AWS EventBridge (for enabling external event publishing)
Benchling (for biology ELN)
Egnyte (for cloud storage)
Okta (single sign-on)
Additional service integrations are in the works, but these are the current production-ready ones.
Currently, the best way to run Study Tracker is to build it from source. You can find the latest stable build on the GitHub releases page:
Follow the instructions below to build and run Study Tracker with a minimal configuration, substituting any placeholder values (such as database host or passwords) with the appropriate values. Additional configuration is required to enable all of Study Tracker's available features, you can find a full list of the required steps further in this documentation. Suggested steps for setting up a production deployment are also available here.
Study Tracker requires a PostgreSQL database for storing its data. Assuming you have an instance running locally or remote, you can run the following commands to create a new user and schema for Study Tracker:
Study Tracker is a Spring Boot web application and uses .properties
files to define required and optional configuration parameters. The top level of the project includes a application.properties.example
file that can be used as a template for configuring Study Tracker. Copy or rename this file to application.properties
and update the following properties:
These are the minimum required configuration parameters required to run Study Tracker. The admin email and password will be used to define a super user that you will use to sign into the application after it starts and perform configuration (you can change the password later).
Study Tracker is a compiled and deployed as an executable WAR file. From the top-level of the project directory, run the following command to build the application:
While the Study Tracker front-end is a React web application, Maven will use the frontend-maven-plugin to download NodeJS and NPM, install all dependencies, and compile the required code. Once complete, the compiled WAR file can be found in target/study-tracker-[VERSION_NUMBER].war
.
To run the compiled WAR file, simple execute:
This will start the embedded Tomcat web server and deploy Study Tracker. If no other parameters were configured in the application.properties
file other than the required ones above, the application will be reachable at http://localhost:8080.