Skip to content

Commit

Permalink
fix(config): fix and comment dev application.yaml
Browse files Browse the repository at this point in the history
Signed-off-by: Sylvain Leclerc <[email protected]>
  • Loading branch information
sylvlecl committed Sep 6, 2024
1 parent 8273aca commit e529233
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,20 @@ launcher:
700: path/to/700
enable_nb_cores_detection: true

# See https://fastapi.tiangolo.com/advanced/behind-a-proxy/
# root path is used when the API is served behind a proxy which
# adds a prefix for clients.
# It does NOT add any prefix to the URLs which fastapi serve.

# root_path: "api"


# Uncomment to serve the API under /api prefix
# (used in standalone mode to emulate the effect of proxy servers
# used in production deployments).

# api_prefix: "/api"

server:
worker_threadpool_size: 12
services:
Expand All @@ -38,6 +50,5 @@ logging:
level: INFO
logfile: ./tmp/antarest.log

# True to get sqlalchemy logs
debug: False

api_prefix: "/api"

0 comments on commit e529233

Please sign in to comment.