Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe committed Sep 27, 2023
1 parent 4d9f2ae commit 7f227f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/app/core/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ def assemble_reev_version(cls, v: str | None, info: ValidationInfo) -> str | Non
#: Expiry of access token (60 minutes * 24 hours * 8 days = 8 days)
ACCESS_TOKEN_EXPIRE_MINUTES: int = 60 * 24 * 8
#: Server hostname
SERVER_NAME: str
SERVER_NAME: str = "localhost"
#: HTTP to server
SERVER_HOST: AnyHttpUrl
SERVER_HOST: AnyHttpUrl = "http://localhost:8080"
#: BACKEND_CORS_ORIGINS is a JSON-formatted list of origins
#: e.g: '["http://localhost", "http://localhost:4200", "http://localhost:3000", \
#: "http://localhost:8080", "http://local.dockertoolbox.tiangolo.com"]'
Expand Down

0 comments on commit 7f227f0

Please sign in to comment.