Skip to content

Commit

Permalink
added localhost to spec
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexPatrie committed Sep 12, 2024
1 parent de7266d commit 4d9e3d1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@

This application (`bio_check`) uses a microservices architecture which presents the following libraries:

- `api`: This library handles all requests including saving uploaded files, pending job creation, fetching results, and contains the user-facing endpoints.
- `compose_api`: This library handles all requests including saving uploaded files, pending job creation, fetching results, and contains the user-facing endpoints.
- `storage`: This library handles MongoDB configs as well as bucket-like storages for uploaded files.
- `worker`: This library handles all job processing tasks for verification services such as job status adjustment, job retrieval, and comparison execution.
- `compose_worker`: This library handles all job processing tasks for verification services such as job status adjustment, job retrieval, and comparison execution.

The installation process is outlined as follows:

Expand Down
4 changes: 4 additions & 0 deletions compose_api/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@
{
"url": "https://biochecknet.biosimulations.org",
"description": "Production server"
},
{
"url": "http://localhost:8000",
"description": "Development server"
}
]
APP_ORIGINS = [
Expand Down
2 changes: 2 additions & 0 deletions compose_api/spec/openapi_3_1_0_generated.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ info:
servers:
- url: https://biochecknet.biosimulations.org
description: Production server
- url: http://localhost:8000
description: Development server
paths:
/:
get:
Expand Down

0 comments on commit 4d9e3d1

Please sign in to comment.