Skip to content

Commit

Permalink
fix: updated CPM docs url to custom domain
Browse files Browse the repository at this point in the history
  • Loading branch information
CS76 committed Aug 31, 2023
1 parent 1d69669 commit 845a99d
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ This set of essential and valuable microservices is designed to be accessed via

## Documentation

https://steinbeck-lab.github.io/cheminformatics-python-microservice/
https://docs.api.naturalproducts.net/

### API Swagger Docs:

Expand Down
4 changes: 2 additions & 2 deletions app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
app = FastAPI(
title="Cheminformatics Microservice",
description="This set of essential and valuable microservices is designed to be accessed via API calls to support cheminformatics. Generally, it is designed to work with SMILES-based inputs and could be used to translate between different machine-readable representations, get Natural Product (NP) likeliness scores, visualize chemical structures, and generate descriptors. In addition, the microservices also host an instance of STOUT and another instance of DECIMER (two deep learning models for IUPAC name generation and optical chemical structure recognition, respectively).",
terms_of_service="https://steinbeck-lab.github.io/cheminformatics-python-microservice",
terms_of_service="https://docs.api.naturalproducts.net",
contact={
"name": "Steinbeck Lab",
"url": "https://cheminf.uni-jena.de/",
Expand All @@ -35,7 +35,7 @@
version_format="{major}",
prefix_format="/v{major}",
enable_latest=True,
terms_of_service="https://steinbeck-lab.github.io/cheminformatics-python-microservice",
terms_of_service="https://docs.api.naturalproducts.net",
contact={
"name": "Steinbeck Lab",
"url": "https://cheminf.uni-jena.de/",
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
dockerfile: Dockerfile
container_name: cheminformatics-python-microservice
environment:
HOMEPAGE_URL: "https://steinbeck-lab.github.io/cheminformatics-python-microservice"
HOMEPAGE_URL: "https://docs.api.naturalproducts.net"
RELEASE_VERSION: v1.0.0
volumes:
- ./app:/code/app
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This set of essential and valuable microservices is designed to be accessed via
How to access
=============

https://steinbeck-lab.github.io/cheminformatics-python-microservice/
https://docs.api.naturalproducts.net/


.. toctree::
Expand Down
2 changes: 1 addition & 1 deletion ops/docker-compose-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ services:
web:
image: caffeinejena/cheminformatics-python-microservice:dev-latest
environment:
HOMEPAGE_URL: "https://steinbeck-lab.github.io/cheminformatics-python-microservice"
HOMEPAGE_URL: "https://docs.api.naturalproducts.net"
RELEASE_VERSION: dev-latest
pull_policy: always
labels:
Expand Down
2 changes: 1 addition & 1 deletion ops/docker-compose-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ services:
web:
image: caffeinejena/cheminformatics-python-microservice:v1.0.0
environment:
HOMEPAGE_URL: "https://steinbeck-lab.github.io/cheminformatics-python-microservice"
HOMEPAGE_URL: "https://docs.api.naturalproducts.net"
RELEASE_VERSION: v1.0.0
pull_policy: always
labels:
Expand Down

0 comments on commit 845a99d

Please sign in to comment.