forked from EBISPOT/ols4
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3,969 changed files
with
1,484,166 additions
and
123,457 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Thank you for using OLS! We appreciate any feedback that can improve OLS and grow its user base. Besides being an enthusiastic user of OLS, you can contribute to OLS in the following ways: | ||
|
||
1. If you find something that does not work as expected, please open a [Github issue](https://github.com/EBISPOT/ols4/issues/new?assignees=&labels=bug&projects=&template=bug_report.md&title=). | ||
2. If you have an idea for a new feature for OLS, please open a [Github feature request](https://github.com/EBISPOT/ols4/issues/new?assignees=&labels=ols4-new-feature&projects=&template=feature_request.md&title=). | ||
Please provide detailed information with regards to the use case(s) this feature will support. | ||
3. If you are hosting your own instance of OLS, please tell us about it by opening a ticket [here](https://github.com/EBISPOT/ontotools-docker/issues). | ||
Please tell us about your use case and statistics like, number of ontologies hosted, number of requests per month and number of unique | ||
users per month. | ||
4. For opening PRs against OLS, please follow the guidelines detailed [here](https://github.com/EBISPOT/ols4/wiki/Guidelines-for-opening-PR). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,16 @@ | ||
|
||
FROM maven:3.9.6-eclipse-temurin-17 | ||
|
||
RUN mkdir /opt/ols | ||
COPY . /opt/ols/ | ||
RUN cd /opt/ols && ls && mvn clean package -DskipTests | ||
RUN mkdir /opt/ols && mkdir /opt/ols/backend && mkdir /opt/ols/ols-shared | ||
COPY ./backend /opt/ols/backend | ||
COPY ./ols-shared /opt/ols/ols-shared | ||
|
||
RUN cd /opt/ols/ols-shared && mvn package | ||
|
||
RUN mvn install:install-file -DcreateChecksum=true -Dpackaging=jar -Dfile=/opt/ols/ols-shared/target/ols4-shared-1.0.0-SNAPSHOT.jar -DgroupId=uk.ac.ebi.spot.ols -DartifactId=ols4-shared -Dversion=1.0.0-SNAPSHOT | ||
RUN cd /opt/ols/backend && ls && mvn clean package -DskipTests | ||
|
||
EXPOSE 8080 | ||
ENTRYPOINT ["java", "-jar", "/opt/ols/target/ols4-backend-4.0.0-SNAPSHOT.jar"] | ||
ENTRYPOINT ["java", "-jar", "/opt/ols/backend/target/ols4-backend-4.0.0-SNAPSHOT.jar"] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.