This is the OpenELIS rewrite onto Java Spring, and with all new technology and features. Please vist our website for more information.
You can find more information on how to set up OpenELIS at our docs page
Download the OpenELIS Global Installer for each Release from the Release Assets
see full installtion instructions for Offline Installation
docker-compose up -d
Running OpenELIS Global2 using docker compose with docker images built directly from the source code
docker-compose -f build.docker-compose.yml up -d --build
Running OpenELIS Global2 using docker compose With locally compiled/built Artifacts (ie the War file and React code)
-
Fork the OpenELIS-Global Repository and clone the forked repo. The
username
below is theusername
of your Github profile.git clone https://github.com/username/OpenELIS-Global-2.git
-
innitialize and build sub modules
cd OpenELIS-Global-2 git submodule update --init --recursive cd dataexport mvn clean install -DskipTests
-
Build the War file
cd .. mvn clean install -DskipTests
-
Start the containers to mount the locally compiled artifacts
docker-compose -f dev.docker-compose.yml up -d
Note : For Reflecting Local changes in the Running Containers ;
-
Any Changes to the Front-end React Source Code will be directly Hot Reloaded in the UI
-
For changes to the Back-end Java Source code
-
Run the maven build again to re-build the War file
mvn clean install -DskipTests
-
Recreate the Openelis webapp container
docker-compose -f dev.docker-compose.yml up -d --no-deps --force-recreate oe.openelis.org
-
Instance | URL | credentials (user : password) |
---|---|---|
Legacy UI | https://localhost/api/OpenELIS-Global/ | admin: adminADMIN! |
New React UI | https://localhost/ | admin: adminADMIN! |
Note: If your browser indicates that the website is not secure after accessing any of these links, simply follow these steps:
- Scroll down on the warning page.
- Click on the "Advanced" button.
- Finally, click on "Proceed to https://localhost" to access the development environment.